Slide 14
Slide 14 text
Sample app - Layout
return new Scaffold(
appBar: new AppBar(
title: new Text(widget.title),
),
body: new Center(
child: new ListView(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
children: [
new TextField(
decoration: const InputDecoration(
hintText: 'Flutter',
labelText: 'Query',
),
maxLines: 1,
controller: _controller,
),
new Container(
padding: const EdgeInsets.all(20.0),
child: new RaisedButton(
child: const Text('Search'),
onPressed: _search,
),
),
container,