📜  颤振旋转小部件 - Dart 代码示例

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

代码示例4
RotationTransition(
  turns: AlwaysStoppedAnimation(-20 / 360), 
  //it will rotate 20 degree, remove (-) to rotate -20 degree
  child: Card(
      child: Text("FlutterCampus.com")
  )
)