颤振不再接受 firebase 用户命令了吗? [复制]
Posted
技术标签:
【中文标题】颤振不再接受 firebase 用户命令了吗? [复制]【英文标题】:Is flutter is nomore takinig firebaseUser comand? [duplicate] 【发布时间】:2021-01-11 07:37:41 【问题描述】:所以我的问题是我想在我的应用程序中使用 firebase 身份验证,并且我正在尝试使用此命令(Future currentUser();) 但程序无法识别 FirebseUser 这个词?那么我该如何解决这个问题?enter image description here
【问题讨论】:
【参考方案1】:由于对 firebase 软件包的重大更改。 currentUser() 改为 getter 中断:通过 currentUser() 访问当前用户现在通过 currentUser getter 同步。 https://pub.dev/packages/firebase_auth/changelog
这样你就可以使用getter方法访问当前用户了。
FirebaseAuth.instance.currentUser;
【讨论】:
感谢 ^_^ 现在可以使用了【参考方案2】:它不再是未来的功能,您可以直接访问用户; FirebaseAuth.instance.currentUser
【讨论】:
以上是关于颤振不再接受 firebase 用户命令了吗? [复制]的主要内容,如果未能解决你的问题,请参考以下文章