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

℡╲_俬逩灬. 提交于 2020-12-25 07:02:22

问题


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

Present Icon:

Required Result:


回答1:


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,),
)


来源:https://stackoverflow.com/questions/58047009/flutter-how-to-flip-an-icon-to-get-mirror-effect

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!