Skip to content

Instantly share code, notes, and snippets.

@ramansah
Created December 8, 2018 15:44
Show Gist options
  • Save ramansah/0b3c19e9a221edcfebce94f352101872 to your computer and use it in GitHub Desktop.
Save ramansah/0b3c19e9a221edcfebce94f352101872 to your computer and use it in GitHub Desktop.
RaisedButton(
child: Text(isActive ? 'STOP' : 'START'),
onPressed: () {
setState(() {
isActive = !isActive;
});
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment