Skip to content

Instantly share code, notes, and snippets.

@aaronksaunders
Created May 30, 2019 23:46
Show Gist options
  • Save aaronksaunders/2f3b1faa1b975225315a7558ab16d0f7 to your computer and use it in GitHub Desktop.
Save aaronksaunders/2f3b1faa1b975225315a7558ab16d0f7 to your computer and use it in GitHub Desktop.
Markdium-Simple Firebase Login Flow in Flutter
// save the fields..
final form = _formKey.currentState;
form.save();
// Validate will return true if is valid, or false if invalid.
if (form.validate()) {
print("$_email $_password");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment