标签: flutter
是否有API检查该应用是否已最小化但尚未被杀死,因此它处于后台状态?
我搜索了它,还搜索了GitHub问题,无法解决。
这样的API是否存在?
答案 0 :(得分:0)
您可以将WidgetsBindingObserver混合添加到一个或多个窗口小部件中,并收听AppLifecycleState。
WidgetsBindingObserver
AppLifecycleState
Here是文档和示例