Skip to content

Instantly share code, notes, and snippets.

@ibhavikmakwana
Created June 5, 2018 07:43
Show Gist options
  • Save ibhavikmakwana/a77e5017b107223d64090463cfc001fe to your computer and use it in GitHub Desktop.
Save ibhavikmakwana/a77e5017b107223d64090463cfc001fe to your computer and use it in GitHub Desktop.
void animateButton() {
setState(() {
_state = 1;
});
Timer(Duration(milliseconds: 3300), () {
setState(() {
_state = 2;
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment