You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My issue is that I want a phone to authorize only, I'm getting the SMS but no sign in.
I've skipped the email login, and when I input my phone number I get this:
Iv tried to change this final result = await _firebaseUser.linkWithCredential(credential).catchError((error) { print("Failed to verify SMS code: $error"); _showErrorSnackbar(errorMessage); }); _firebaseUser = result.user;
but cant figure what to change it to
Any help will be great
The text was updated successfully, but these errors were encountered:
Hello! This is not really a package, but a companion repository to a tutorial I wrote a while ago. You can't really verify the phone number without a FirebaseUser, which means you can't skip the email login which is why it's failing.
First of all, great package thanks!!
My issue is that I want a phone to authorize only, I'm getting the SMS but no sign in.
I've skipped the email login, and when I input my phone number I get this:
Iv tried to change this
final result = await _firebaseUser.linkWithCredential(credential).catchError((error) { print("Failed to verify SMS code: $error"); _showErrorSnackbar(errorMessage); }); _firebaseUser = result.user;
but cant figure what to change it to
Any help will be great
The text was updated successfully, but these errors were encountered: