作者:上午劳动_951 | 来源:互联网 | 2023-06-27 11:24
问候,我正在使用Firebase消息发送通知到flutter应用程序,它工作正常,但是通知作为状态栏中的应用程序图标接收,并且像任何常规应用程序一样弹出通知栏。这是代码:
_firebaseMessaging.configure(
onmessage: (Map notification) async {
setState(() {
notifications.add(
Notifications(
title: notification["notification"]["title"],body: notification["notification"]["body"],color: Colors.red,),);
});
},onLaunch: (Map notification) async {
setState(() {
notifications.add(
Notifications(
title: notification["notification"]["title"],color: Colors.green,onResume: (Map notification) async {
setState(() {
notifications.add(
Notifications(
title: notification["notification"]["title"],color: Colors.blue,);
这样做是手动设置还是什么?