我正在使用 firebase 和我的颤振应用程序。该应用程序是为 iOS 和 Android 平台构建的。收到通知后,如果我单击通知,状态栏中的通知图标会删除,包括应用启动器图标中的通知计数徽章。
但是,如果我点击启动器图标而不是通知,状态栏中的通知图标仍然包括应用程序启动器图标中的通知计数徽章。
根据文档,为了解决这个问题,这是我到目前为止所做的:
import ...
import 'package:flutter_app_badger/flutter_app_badger.dart';
import ...
removeTheNotifications() async {
if(await FlutterAppBadger.isAppBadgeSupported()){
FlutterAppBadger.updateBadgeCount(0);
FlutterAppBadger.removeBadge();
}
}
并在flutter screen的build函数中调用这个方法:
removeTheNotifications();
但这没有任何区别,也不起作用。谢谢