Use ListView in text_field_demo.dart (#7965)

Now that ensureVisible works, we can use ListView instead of Block in
this demo.
This commit is contained in:
Adam Barth 2017-02-08 10:33:49 -08:00 committed by GitHub
parent 28defe5053
commit 1a066c8404

View file

@ -110,7 +110,7 @@ class TextFieldDemoState extends State<TextFieldDemo> {
key: _formKey,
autovalidate: _autovalidate,
onWillPop: _warnUserAboutInvalidData,
child: new Block(
child: new ListView(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
children: <Widget>[
new TextField(