Skip to content

Instantly share code, notes, and snippets.

@ibhavikmakwana
Created June 5, 2018 07:58
Show Gist options
  • Save ibhavikmakwana/d885478fc3385e0b3b2c927c0f8524bd to your computer and use it in GitHub Desktop.
Save ibhavikmakwana/d885478fc3385e0b3b2c927c0f8524bd to your computer and use it in GitHub Desktop.
Widget setUpButtonChild() {
if (_state == 0) {
return new Text(
"Click Here",
style: const TextStyle(
color: Colors.white,
fontSize: 16.0,
),
);
} else if (_state == 1) {
return CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
);
} else {
return Icon(Icons.check, color: Colors.white);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment