- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的flutter应用程序中,我尝试使用Provider包中的ChangeNotifier将Firebase用户对象传递给降序的小部件。我的第一个想法是在StreamBuilder中执行以下操作:
Widget _authBuilder(context, Widget body) {
final authModel = Provider.of<FAAuthModel>(context);
return StreamBuilder(
stream: FirebaseAuth.instance.onAuthStateChanged,
builder: (context, snapshot) {
authModel.user = snapshot.data;
return body;
},
);
}
I/flutter (28504): ══╡ EXCEPTION CAUGHT BY FOUNDATION LIBRARY ╞════════════════════════════════════════════════════════
I/flutter (28504): The following assertion was thrown while dispatching notifications for FAAuthModel:
I/flutter (28504): setState() or markNeedsBuild() called during build.
I/flutter (28504): This _DefaultInheritedProviderScope<FAAuthModel> widget cannot be marked as needing to build because
I/flutter (28504): the framework is already in the process of building widgets. A widget can be marked as needing to
I/flutter (28504): be built during the build phase only if one of its ancestors is currently building. This exception
I/flutter (28504): is allowed because the framework builds parent widgets before children, which means a dirty
I/flutter (28504): descendant will always be built. Otherwise, the framework might not visit this widget during this
I/flutter (28504): build phase.
I/flutter (28504): The widget on which setState() or markNeedsBuild() was called was:
I/flutter (28504): _DefaultInheritedProviderScope<FAAuthModel>
I/flutter (28504): The widget which was currently being built when the offending call was made was:
I/flutter (28504): StreamBuilder<FirebaseUser>
I/flutter (28504):
最佳答案
因此,此问题的答案是您不应使用StreamBuilder,而应使用侦听器。
Widget _authBuilder(context, Widget body) {
Stream<FirebaseUser> stream;
final authModel = Provider.of<FAAuthModel>(context);
stream = FirebaseAuth.instance.onAuthStateChanged;
stream.listen((snapshot) {
/* We are not logged in */
if (snapshot == null && authModel.user == null) {
//Do nothing
}
/* We are not logged in, or we are logging out */
else if (snapshot == null) {
authModel.user = null;
/* We are logged in but we just opened our app */
} else if (authModel.user == null) {
authModel.user = snapshot;
/* We are logged in but something happened e.g. the widget tree was rebuilt and we just logged out? */
} else if (authModel.user.uid != snapshot.uid) {
authModel.user = snapshot;
}
});
return body;
}
关于firebase - 我应该如何在Flutter应用中使用FirebaseAuth.instance.onAuthStateChanged?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60579449/
所以我有一个 onAuthStateChanged 流,我想检查用户是否已被 Firebase 控制台上的管理员禁用以注销用户并再次转到登录页面,这是我的流检查用户是否已登录,但如何检查用户是否被 F
当我尝试注册时,它说注册失败。这是经过一些调整后的代码更新版本。我尝试分析代码,但没有成功。 包 com.brandshopping.brandshopping; import androidx.an
我的代码中的 FirebaseAuth.getInstance 返回 null,这导致我的应用无法运行。这是我的主要内容: public class MainActivity extends AppC
我刚开始编写一个新的 Xcode 项目,我使用 FirebaseAuth 进行登录/注销,问题是当我尝试正常登录用户时,你会使用它 Auth.auth().signIn(withEmail: emai
我正在开发一个应用程序,该应用程序使用 Firebase 身份验证通过电话号码登录用户。我想添加一项功能,使用户只能登录一次,即即使用户终止应用程序并再次启动它,他也应该登录。另外,我不想添加注销功能
为什么会出现此错误?我的存储库和 Google Play 服务是最新的,我已经使用了使用 Firebase 所需的所有步骤,例如在 build.gradle(项目和应用程序)中复制 firebase
我在我的应用程序中使用 facebook 登录。用户登录后,我可以获得他们的基本 Facebook 信息,例如显示名称、电子邮件和照片 url。我想得到他们的 facebook 好友列表。我想我可以用
我有一个社交媒体应用,我使用 FirebaseUI 让用户使用电子邮件、Google 或 Facebook 登录/注册该应用。 如果使用“电子邮件”作为密码,如何让用户稍后更改其密码提供商? 如果使用
我在我的应用程序中有一个带有重定向的 Google 身份验证,我想在身份验证完全完成后进行重定向。 但是 promise 没有用 function loginGoogle() { v
我希望在我的应用中的用户状态发生变化时收到通知。我的意思是,当它刚刚登录和刚刚注销时。我不想在刷新用户 token 或每次应用程序启动并且用户自动登录时收到通知。 我正在使用预期的处理程序: Fire
我正在制作一个包含登录系统的系统,登录后我们进入主要 Activity ,那里有一个抽屉导航 Activity 。之前,当我开始时,我的登录系统运行得很好,但我有一个空的主要 Activity ,只有
我安装了我需要的所有 pod,但 Xcode 显示错误“没有这样的模块 FirebaseAuth”,我尝试了这个,发现: Shift+Command+K 清理工作区 我在终端中重新安装了 podfil
我试图在 Flutter 中获取用户的登录状态,每当我第一次运行我的应用程序时(仅当我卸载并重新安装该应用程序时),以下代码返回一个用户。 我已经尝试让用户从 whenComplete 和 then
From the docs : 管理员用户管理 API 使您能够在安全的服务器环境中以编程方式完成以下任务: 构建针对特定用户量身定制的自定义用户控制台应用程序的用户管理系统。 这是否意味着我可以将自
我有一个使用 Facebook 身份验证登录的应用程序。当加载入职屏幕时,我检查用户是否已经通过身份验证,如果他们使用以下代码,则执行转至主屏幕: override func viewDidLoad(
我正在使用 Firebase 的身份验证服务,它可以正常工作,但我不知道如何处理 createUserWithEmailAndPassword() 的错误代码,例如 auth/email-alread
我将我的 Firebase signInWithEmailAndPassword() 方法从我的登录 Activity 中移到了一个单独的网络包/类中。我已使用 createUserWithEmail
在我的应用程序中,我们只有用于登录的电话号码验证。这对用户来说是完美的,但在测试应用程序时开始变得有点痛苦。 存在多个问题: 电话号码验证仅适用于实体设备。 多次登录会导致接收带有验证码的短信出现较大
将 Firebase 身份验证集成到我的应用中。一切似乎都很好,直到我注意到我打开应用程序时出现的问题,它显示登录屏幕,即使已经有用户登录。 退出应用程序并再次启动它解决了问题(应用程序不再要求用户重
我有一个 DispatchActivity 作为我的 Launcher Activity,用于检查当前是否有用户登录。如果用户已登录,我将他们发送到他们的 ProfileActivity。否则,我将它
我是一名优秀的程序员,十分优秀!