Skip to content

Instantly share code, notes, and snippets.

@the-dagger
Last active March 1, 2018 20:58
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 the-dagger/19b962f81d5d3a2169488b72812a341d to your computer and use it in GitHub Desktop.
Save the-dagger/19b962f81d5d3a2169488b72812a341d to your computer and use it in GitHub Desktop.
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
@override
Widget build(BuildContext context) {
....
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment