Commit 0628c64b authored by Matt Perry's avatar Matt Perry

Use KeyboardType.phone for the Gallery app's text demo. (#3983)

BUG=https://github.com/flutter/flutter/issues/3970
parent ee3db6e6
......@@ -82,6 +82,7 @@ class TextFieldDemoState extends State<TextFieldDemo> {
new Input(
hintText: 'Where can we reach you?',
labelText: 'Phone Number',
keyboardType: KeyboardType.phone,
formField: new FormField<String>(
setter: (String val) { person.phoneNumber = val; },
validator: _validatePhoneNumber
......
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