📜  颤动翻转图像 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:42.184000             🧑  作者: Mango

代码示例2
import 'dart:math' as math; // import this

Transform(
  alignment: Alignment.center,
  transform: Matrix4.rotationY(math.pi),
  child: Icon(Icons.rotate_left, size: 100,),
)