firebase_auth_demo_flutter
firebase_auth_demo_flutter copied to clipboard
Reference Authentication Flow with Flutter & Firebase
HI, when I run flutter pub get I get this output. [firebase_auth_demo_flutter-master] flutter pub get Running "flutter pub get" in firebase_auth_demo_flutter-master... Because every version of flutter_driver from sdk depends on...
I've been through your Udemy Flutter & Firebase course. I wanted to study this demo for additional insights. Thank you for making it available to all. I'm seeing a hitch...
It's possible to adapt the app for going to new SignUp page after first login? and if user is signin go to homepage
https://github.com/bizz84/firebase_auth_demo_flutter/blob/2884b08a6eeac7c324e12884197e566661da1678/lib/app/sign_in/email_password/email_password_sign_in_page.dart#L84 I'm not getting the alert of the PlatformException when user get ERROR_WRONG_PASSWORD, ERROR_TOO_MANY_REQUESTS, etc. Does anyone knows how to fix it?
Andrea, Do you have any plans on updating this project to work in the latest (null safety) versions of Flutter/Dart? Thanks.
This was reported by a student of my course. Reproduction steps 1. run the App on iOs simulator or real iOS device. 2. click on sign in with google button....
void validateAndSubmit() async { if (validateAndSave()) { try{ FirebaseUser user = await FirebaseAuth.instance .signInWithEmailAndPassword(email: _email, password: _password); print('Signed in: ${user.uid}'); } catch(e){ print('Error: ${e}') } } } -------------- Error: A...
One of the instructions states: `download and copy GoogleService-Info.plist into iOS/Runner, and add it to the Runner target in Xcode.` Could you provide a screen shot showing what it means...
Unlike the current implementation, [sign_in_with_apple ](https://pub.dev/packages/sign_in_with_apple)supports more than just iOS. This is useful if your user has signed up with apple before on your website or another phone and has...