📜  flutter animatedalign - Dart 代码示例

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

代码示例1
Container(
          color: Colors.pink[100],
          width: 100.0,
          height: 100.0,
          child: const AnimatedAlign(
          alignment: Alignment.topRight, // change alignment to see animation
          duration: Duration(seconds: 2),
          child: FlutterLogo()),
        ),