Created
June 12, 2019 09:50
-
-
Save timbergus/50ee8a8788b4b3813c50d66d82d27b6b to your computer and use it in GitHub Desktop.
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
@override | |
void initState() { | |
super.initState(); | |
_auth.currentUser().then((response) { | |
print(response.uid); | |
if (response.uid != null) { | |
setState(() { | |
logged = true; | |
}); | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment