Issue I’m trying to make a row appear after the onError event activates, my idea is to do something like what’s in the code, but I can’t figure that out signInAndUpButton(context, true, () { FirebaseAuth.instance .signInWithEmailAndPassword( email: _emailTextController.text, password: _passwordTextController.text)
Continue readingTag: firebase-authentication
Flutter Firebase UI not updating and showing correct user info after signing out and in with different user
Issue I’m creating and testing a simple dashboard that I want to display the current user’s email. I’m just using test1@test.com and test2@test.com. When I signout of test1 and sign in with test2, my UI still says "Good Evening, test1@test.com"
Continue readingTypeError: Cannot read properties of undefined (reading 'init') || Flutter web
Issue I have recently upgraded my flutter project from Flutter Beta to Flutter Stable 3.3.8. after upgrading, I also upgraded all the firebase packages to the latest version. Due to this upgrade on my config function, there is a new
Continue readingHow to use a Firebase emulator demo project in Flutter?
Issue I have a Flutter project where I use Firebase Authentication. I’d like to test it locally. Here is how Firebase local emulator is started: firebase emulators:start –project demo-test –only auth Here is Firebase initialization from main.dart: Future<void> main() async
Continue readingShould I consume IndexedDB directly when reloading a Flutter web app to determine auth state when using FirebaseAuth?
Issue I am building a Flutter web app using FirebaseAuth for authentication, and I am trying to figure out how to load the correct route when the user a) is authenticated, and b) the user refreshes the web page. When
Continue readingFirebase auth ui (com.firebaseui:firebase-ui-auth) problem
Issue I am working on firebase for my android app and I trying to implement firebase ui auth, but sign-in intent gets suck. Some users reported the authentication picker activity is not loaded. When they tap on the button which
Continue readingFlutter: Why does my stream end unexpectedly when logging in with Firebase Authentication?
Issue I’m using Firebase Authentication for login in my Flutter app. It shows CircularProgressIndicator (it shows it when loading) for a long time. It then shows the following error in the debug console: [firebase_auth/unknown] com.google.firebase.FirebaseException: An internal error has occurred.
Continue readingFlutter firease phone not sending sms due to verification sha key error
Issue I added application signing key, debug sha keys, release sha keys to firebase, while it works in one application, it doesn’t work in my other application. E/FirebaseAuth(21751): [SmsRetrieverHelper] SMS verification code request failed: unknown status code: 17028 A safety_net_token
Continue readinghow I can check if the email is already exist in authentication firebase
Issue I have this function to create authentication in my firebase but the problem is when the user enters an email that already exists my app will stop com.google.firebase.auth.FirebaseAuthUserCollisionException: The email address is already in use by another account. how
Continue readingHow to get the return of Futur function call with class Provider.of?
Issue I’m building an app with flutter and I have a question about Provider.of. In my Widget I call this : Provider.of<Auth>(context, listen: false).signup(emailController.text, passwordController.text); And I would like to navigate with Navigator according to the return of my signup
Continue reading