Search code examples
flutterflutter-layout

Flutter: How to flip an icon to get mirror effect?


I want to flip this replay material icon so that it can be used as forward.

Present Icon:

Preset Icon

Required Result:

enter image description here


Solution

  • With Flutter 3.10.2 ( not sure if it was available before ), you can flip as below :

    Transform.flip(
      flipX: true,
      child: const Icon(Icons.rotate_right),
    )
    

    Similarly, to flip vertically, use the flipY property