我想翻转这个重放素材图标,这样它就可以向前使用了。
呈现图标:
所需结果:
发布于 2019-09-22 16:53:23
之前的:
之后的
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
复制相似问题