📜  颤动动画容器 - Dart 代码示例

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

代码示例1
AnimatedContainer(
        curve: Curves.linear,
        color: Colors.pink[100],
        width: 200.0, // change width or height to see animation
        height: 200.0,
        duration: const Duration(seconds: 2),
      )