Updated 21 December 2023
If you are reading this article, you must already know about Container. A Container is a well-known widget in Flutter. It is a widget that combines common painting, positioning, and sizing widgets. It has various well-defined properties such as color, alignment, padding, width, and height. Animated Container in Flutter is simply a container widget with animation.
Check out more about our Flutter app development company.
You can use the Animated Container widget if you want to create an animation every time any value changes. AnimatedContainer works by starting an animation that plays for the given duration when the value of the property changes.
Now let’s check how can we implement Animated Container in Flutter.
Create a stateful widget.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
class MyHomePage extends StatefulWidget { const MyHomePage({Key? key, required this.title}) : super(key: key); final String title; @override State<MyHomePage> createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(widget.title), ), |
Add an Animated Container widget.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
body: Center( child: AnimatedContainer( width: width, height: height , duration: const Duration(seconds: 1), decoration: BoxDecoration( color: color, borderRadius: _borderRadius ), curve: Curves.fastOutSlowIn, ), ) |
Add different properties such as width, height, color, and duration of the animation, and provide an optional curve to make the animation feel smoother.
Define width, height & color.
1 2 3 4 |
double width = 50; double height = 50; Color color = Colors.green; BorderRadiusGeometry _borderRadius = BorderRadius.circular(8); |
Altering the properties.
Add an FAB & on the onPressed function of FAB and alter the Animated Container properties by randomly generating the height, width & color of the container.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
floatingActionButton: FloatingActionButton( child: const Icon(Icons.play_arrow), onPressed: () { setState(() { final random = Random(); width = random.nextInt(300).toDouble(); height = random.nextInt(300).toDouble(); color = Color.fromRGBO(random.nextInt(256), random.nextInt(256), random.nextInt(256), 1); _borderRadius = BorderRadius.circular(random.nextInt(100).toDouble()); }); }, ), |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
import 'dart:math'; import 'package:flutter/material.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, ), home: const MyHomePage(title: 'Animated Container'), ); } } class MyHomePage extends StatefulWidget { const MyHomePage({Key? key, required this.title}) : super(key: key); final String title; @override State<MyHomePage> createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { double width = 50; double height = 50; Color color = Colors.green; BorderRadiusGeometry _borderRadius = BorderRadius.circular(8); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(widget.title), ), floatingActionButton: FloatingActionButton( child: const Icon(Icons.play_arrow), onPressed: () { setState(() { final random = Random(); width = random.nextInt(300).toDouble(); height = random.nextInt(300).toDouble(); color = Color.fromRGBO(random.nextInt(256), random.nextInt(256), random.nextInt(256), 1); _borderRadius = BorderRadius.circular(random.nextInt(100).toDouble()); }); }, ), body: Center( child: AnimatedContainer( width: width, height: height , duration: const Duration(seconds: 1), decoration: BoxDecoration( color: color, borderRadius: _borderRadius ), curve: Curves.fastOutSlowIn, ), ) // This trailing comma makes auto-formatting nicer for build methods. ); } } |
This is how we create an Animated Container in Flutter.
Thanks for reading this article.
If I got something wrong, let me know in the comments. I would love to improve.
For more interesting blogs check out here – https://mobikul.com/blog/
Reference link: https://betterprogramming.pub/introduction-to-flutter-animations-using-animatedcontainer-96a335cad2c
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.