Created
June 4, 2019 17:52
-
-
Save aaronksaunders/bdf7e53d734b5c096e4803cc20f4933e to your computer and use it in GitHub Desktop.
Markdium-Simple Firebase Login Flow in Flutter, Now Firebase
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
class HomePage extends StatefulWidget { | |
final FirebaseUser currentUser; // ⇐ NEW | |
HomePage(this.currentUser); // ⇐ NEW | |
@override | |
_HomePageState createState() => _HomePageState(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment