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

前端 未结 1 1053
春和景丽
春和景丽 2021-01-07 22:16

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

Present Icon:

Required Result:

相关标签:
1条回答
  • 2021-01-07 22:52

    Before:


    After:

    import 'dart:math' as math; // import this
    
    Transform(
      alignment: Alignment.center,
      transform: Matrix4.rotationY(math.pi),
      child: Icon(Icons.rotate_left, size: 100,),
    )
    
    0 讨论(0)
提交回复
热议问题