add email to the text fields demo (#13946)
diff --git a/examples/flutter_gallery/lib/demo/material/text_form_field_demo.dart b/examples/flutter_gallery/lib/demo/material/text_form_field_demo.dart index 77421b0..8a4421f 100644 --- a/examples/flutter_gallery/lib/demo/material/text_form_field_demo.dart +++ b/examples/flutter_gallery/lib/demo/material/text_form_field_demo.dart
@@ -19,6 +19,7 @@ class PersonData { String name = ''; String phoneNumber = ''; + String email = ''; String password = ''; } @@ -146,6 +147,15 @@ ), new TextFormField( decoration: const InputDecoration( + icon: const Icon(Icons.email), + hintText: 'Your email address', + labelText: 'E-mail', + ), + keyboardType: TextInputType.emailAddress, + onSaved: (String value) { person.email = value; }, + ), + new TextFormField( + decoration: const InputDecoration( hintText: 'Tell us about yourself', helperText: 'Keep it short, this is just a demo', labelText: 'Life story',