Skip to content

Instantly share code, notes, and snippets.

@vijayinyoutube
Created May 30, 2020 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vijayinyoutube/cf38539a80010463c4e73d8d5dbc7be7 to your computer and use it in GitHub Desktop.
Save vijayinyoutube/cf38539a80010463c4e73d8d5dbc7be7 to your computer and use it in GitHub Desktop.
AnimatedContainer(
duration: Duration(seconds: 1),
curve: Curves.fastOutSlowIn,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(15),
color: Colors.green),
width: (animationValue) * animationValue,
height: 50,
child: Center(
child: Text(
"Connected :)",
style: TextStyle(fontSize: 25, color: Colors.white),
),
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment