Created
May 30, 2019 23:46
-
-
Save aaronksaunders/a5658bbfa5a26cc9629150c4629cdd00 to your computer and use it in GitHub Desktop.
Markdium-Simple Firebase Login Flow in Flutter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
class LoginPage extends StatefulWidget { | |
@override | |
_LoginPageState createState() => _LoginPageState(); | |
} | |
class _LoginPageState extends State<LoginPage> { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text("Login Page Flutter Firebase"), | |
), | |
body: Center( | |
child: Text('Login Page Flutter Firebase Content'), | |
), | |
); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment