I'm currently struggling to implement email sign up and log in in my app. I can't use google sign-in or other alternative methods for business reasons.
How to implement Firebase Authentication with Email in Flutter? Is there a way to do it with the Firebase Auth plugin?
This should do what you want:
import 'package:firebase_auth/firebase_auth.dart' show FirebaseAuth;
...
final firebaseUser = await FirebaseAuth.instance
.signInWithEmailAndPassword(email: email, password: password);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With