Skip to content

Instantly share code, notes, and snippets.

@aaronksaunders
Created May 30, 2019 23:46
Show Gist options
  • Select an option

  • Save aaronksaunders/44265be8c2591a05be5eccabedbc6d68 to your computer and use it in GitHub Desktop.

Select an option

Save aaronksaunders/44265be8c2591a05be5eccabedbc6d68 to your computer and use it in GitHub Desktop.
Markdium-Simple Firebase Login Flow in Flutter
children: <Widget>[
SizedBox(height: 20.0), // <= NEW
Text(
'Login Information',
style: TextStyle(fontSize: 20),
),
SizedBox(height: 20.0), // <= NEW
TextFormField(
keyboardType: TextInputType.emailAddress,
decoration: InputDecoration(labelText: "Email Address")),
TextFormField(
obscureText: true,
decoration: InputDecoration(labelText: "Password")),
SizedBox(height: 20.0), // <= NEW
RaisedButton(child: Text("LOGIN"), onPressed: () {}),
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment