Skip to content

Instantly share code, notes, and snippets.

@timbergus
Created June 12, 2019 09:50
Show Gist options
  • Save timbergus/50ee8a8788b4b3813c50d66d82d27b6b to your computer and use it in GitHub Desktop.
Save timbergus/50ee8a8788b4b3813c50d66d82d27b6b to your computer and use it in GitHub Desktop.
@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