Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

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),
      )
Source by api.flutter.dev #
 
PREVIOUS NEXT
Tagged: #flutter #animated #container
ADD COMMENT
Topic
Name
9+5 =