Created
July 27, 2022 17:12
-
-
Save Mufaddal1125/e71e4533c856c1fd72e644a688d8e584 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AnimatedContainer( | |
| color: Colors.blue, | |
| // give the animation duration | |
| duration: const Duration(milliseconds: 300), | |
| // assign the height and width to the container | |
| height: height, | |
| width: width, | |
| child: Center( | |
| child: Text( | |
| 'Animate Me', | |
| style: Theme.of(context) | |
| .textTheme | |
| .titleLarge | |
| ?.copyWith(color: Colors.white), | |
| ), | |
| ), | |
| ), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment