Skip to content

Instantly share code, notes, and snippets.

@aaronksaunders
Created May 30, 2019 23:46
Show Gist options
  • Save aaronksaunders/51bab7307c92a6804c11bee13b991ef2 to your computer and use it in GitHub Desktop.
Save aaronksaunders/51bab7307c92a6804c11bee13b991ef2 to your computer and use it in GitHub Desktop.
Markdium-Simple Firebase Login Flow in Flutter
body: Container(
padding: EdgeInsets.all(20.0),
child: Column(
children: <Widget>[
Text(
'Login Information',
style: TextStyle(fontSize: 20),
),
TextFormField(
keyboardType: TextInputType.emailAddress,
decoration: InputDecoration(labelText: "Email Address")),
TextFormField(
obscureText: true,
decoration: InputDecoration(labelText: "Password")),
RaisedButton(child: Text("LOGIN"), onPressed: () {}),
],
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment