Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Mufaddal1125/e71e4533c856c1fd72e644a688d8e584 to your computer and use it in GitHub Desktop.

Select an option

Save Mufaddal1125/e71e4533c856c1fd72e644a688d8e584 to your computer and use it in GitHub Desktop.
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