Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. final _email = Container(
  2. child: TextFormField(
  3. decoration: InputDecoration(labelText: email),
  4. keyboardType: TextInputType.emailAddress,
  5. controller: emailController,
  6. validator: _validateEmail,
  7. onSaved: (input) => _stringEmail = input.toLowerCase().trim(),
  8. ),
  9. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement