Skip to content

Instantly share code, notes, and snippets.

@aaronksaunders
Created May 30, 2019 23:46
Show Gist options
  • Save aaronksaunders/2821a9c41150c7b85a3f95a73f1e3076 to your computer and use it in GitHub Desktop.
Save aaronksaunders/2821a9c41150c7b85a3f95a73f1e3076 to your computer and use it in GitHub Desktop.
Markdium-Simple Firebase Login Flow in Flutter
TextFormField(
onSaved: (value) => _email = value, // <= NEW
keyboardType: TextInputType.emailAddress,
decoration: InputDecoration(labelText: "Email Address")),
TextFormField(
onSaved: (value) => _password = value, // <= NEW
obscureText: true,
decoration: InputDecoration(labelText: "Password")),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment