Skip to content

Instantly share code, notes, and snippets.

@PeterHdd
Created February 17, 2020 08:32
Show Gist options
  • Save PeterHdd/27ad6f081d5f178c16b91a9ce3bb787b to your computer and use it in GitHub Desktop.
Save PeterHdd/27ad6f081d5f178c16b91a9ce3bb787b to your computer and use it in GitHub Desktop.
child: TextFormField(
controller: nameController,
decoration: InputDecoration(
labelText: "Enter Pet Name",
enabledBorder: OutlineInputBorder(
borderRadius: BorderRadius.circular(10.0),
),
),
// The validator receives the text that the user has entered.
validator: (value) {
if (value.isEmpty) {
return 'Enter Pet Name';
}
return null;
},
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment