Skip to content

Instantly share code, notes, and snippets.

@the-dagger
Last active March 1, 2018 20:59
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/d4a675f16cfa3824bdc5cff581c64bc1 to your computer and use it in GitHub Desktop.
Save the-dagger/d4a675f16cfa3824bdc5cff581c64bc1 to your computer and use it in GitHub Desktop.
class _MyHomePageState extends State<MyHomePage> {
....
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Text(
'You have pushed the button this many times:',
),
new Text(
'$_counter',
style: Theme.of(context).textTheme.display1,
),
],
),
),
floatingActionButton: new FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: new Icon(Icons.add),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment