Commit 1a066c84 authored by Adam Barth's avatar Adam Barth Committed by GitHub

Use ListView in text_field_demo.dart (#7965)

Now that ensureVisible works, we can use ListView instead of Block in
this demo.
parent 28defe50
......@@ -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(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment