python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How can I get my bool value out of a future<bool>?
static Future<bool> getLoginStatus() async {
final prefs = await SharedPreferences.getInstance();
final status = prefs.getBool('isLoggedIn') ?? false;
return status;
}
I have this...
omandersen
Votes: 0
Answers: 2
Set default transition for go_router in Flutter
as the docs from go_router describe, it is easy to set pageBuilder-Transitions for single pages.
However, I want to set the default PageTransition for all pages.
How do I set the default page transiti...
Marwin Lebensky
Votes: 0
Answers: 4
Flutter firebase authentication event handler and hot reloads
Following this blog post: https://blog.ishangavidusha.com/flutter-authentication-flow-with-go-router-and-provider
I have implemented a flutter app using the go router. I have added the firebase authen...
ESD
Votes: 0
Answers: 1
How to solve Flutter: Unhandled Exception: Looking up a deactivated widget's ancestor is unsafe
I am trying to send an E-Mail to the user for verifying his/her account after signing up. On top of that I am automatically navigating to a new screen whenever a user is signed in.
This is the error t...
Florian Leeser
Votes: 0
Answers: 0