gpt4 book ai didi

android - 使用 Flutter 和 Firebase 实现实时在线/离线状态

转载 作者:行者123 更新时间:2023-12-03 04:14:32 25 4
gpt4 key购买 nike

嗨,如果用户在线或离线,在应用中显示的最佳方式是什么?

前端 -> flutter

后端 -> Firestore 云和 Firebase 身份验证。

我在 Firestore 中有一组包含文档的用户。每个文档都是一个用户并包含“状态”字段。在 flutter 中,我可以在每次用户登录或注销时更新此字段,但如果您关闭应用程序,它不会更新。

最佳答案

您可以使用 WidgetsBindingObserver 扩展您的 statefulWidget 状态类
喜欢

class _HomePageState extends State<HomePage>
with WidgetsBindingObserver

initState方法添加 WidgetsBinding.instance.addObserver(this); .
@override
void initState() {
super.initState();
WidgetsBinding.instance.addObserver(this);
}

稍后覆盖 didChangeAppLifecycleState方法
@override
void didChangeAppLifecycleState(AppLifecycleState state) {
if (state == AppLifecycleState.resumed)
//TODO: set status to online here in firestore
else
//TODO: set status to offline here in firestore
}

关于android - 使用 Flutter 和 Firebase 实现实时在线/离线状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60784758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com