Answers for "flutter animated list duration"

4

flutter animated container

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),
      )
Posted by: Guest on September-09-2021
2

flutter animatedalign

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()),
        ),
Posted by: Guest on September-09-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language