有人有想法吗?每当我关闭我的应用程序时,通知也会自动关闭。我尝试使用“ AppLifecycleState.detached”,但仍然无法正常工作。它没有调出“ notifications.cancelAll()”的功能。除了使用AppLifecycleState之外,还有人有解决此问题的想法吗?下面是我的代码:
@override
void didChangeAppLifecycleState(AppLifecycleState state) {
print("State: "+state.toString());
if(state == AppLifecycleState.detached){
print("detached");
notifications.cancelAll();
}
}