Slide 15
Slide 15 text
Back to coding your UI
return new Scaffold(appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
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),
),
);