I'm using firebase and found could not distinguish email-verified user from non-verified user on user list in console.
I know that we can distinguish those users with code-basis like followings but how can I confirm it on console in Firebase Authentication ?
UserCredential _result =
await _auth.signInWithEmailAndPassword(
email: _email,
password: _pswd,
);
_result.user!.sendEmailVerification();
By the way, I believe we cannot change DISPLAY NAME in email template for authentication, is this right or actually we can insert certain value instead ?
Please refer the part circled red in Screen Shot below:
