-
Notifications
You must be signed in to change notification settings - Fork 29k
Closed
Labels
c: regressionIt was better in the past than it is nowIt was better in the past than it is nowf: material designflutter/packages/flutter/material repository.flutter/packages/flutter/material repository.frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.
Description
Put this in a dialog, and as you type in the text field, the dialog changes height.
new Form(
autovalidate: true,
child: new ListBody(
children: <Widget>[
new TextFormField(
decoration: const InputDecoration(
labelText: 'User name',
),
validator: (String name) {
if (name.length < 2)
return 'User names must be alphabetic and at least three characters long.';
},
),
),
],
),
),
cc @HansMuller
martinjmartinez, MisterJimson and arok
Metadata
Metadata
Assignees
Labels
c: regressionIt was better in the past than it is nowIt was better in the past than it is nowf: material designflutter/packages/flutter/material repository.flutter/packages/flutter/material repository.frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.