如何在验证电子邮件后在 flutter 中重定向用户?

发布于 2025-01-09 14:22:31 字数 321 浏览 2 评论 0原文

你好,我是颤振的新手。我在一个flutter项目中尝试了firebase电子邮件和密码身份验证。但我面临一些问题,即当用户确认其电子邮件时,它不会重定向到另一个新页面。谁能建议我该怎么做?

 onPressed: () {
    if (emailAuthVerified.isUserVerified()) {
             EmailVerificationAlert();
                }
    Navigator.pushNamed(context, WelcomeScreen.routeName);
              }

Hello I am new in flutter. I tried the firebase email and password authentication in a flutter project. but I face some problem that is when a user confirm their email it doesn't redirect to another new page. can anyone suggest me what to do?

 onPressed: () {
    if (emailAuthVerified.isUserVerified()) {
             EmailVerificationAlert();
                }
    Navigator.pushNamed(context, WelcomeScreen.routeName);
              }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看透却不说透 2025-01-16 14:22:31

电子邮件验证后,您必须reload()您的用户信息/个人资料,因为idTokenChanges()userChanges() & authStateChanges() 将无法捕获这些更改。

这是参考:https://firebase.flutter.dev/docs/auth/usage

After email verification you would have to reload() your user info/profile since idTokenChanges(), userChanges() & authStateChanges() won't be able to catch these changes.

Here's the reference: https://firebase.flutter.dev/docs/auth/usage

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文