小编Md *_*dam的帖子

React Native - Android - FCM - 显示群组通知,例如什么应用也允许多个分组通知

我想显示组通知,而不是像whatsapp那样的多个通知.例如:一个带有消息的通知 - "2个讨论1个评论"而不是总共三个通知.

我使用了react-native-fcm库(https://github.com/evollu/react-native-fcm)我使用了group&tag键但是无法实现结果,如下面的代码

FCM.presentLocalNotification({
  title: 'Title',
  body: 'Body',
  priority: "high",
  click_action: true,
  show_in_foreground: true,
  local: true,
  group: 'group1',
  tag: 'tag1'
});
Run Code Online (Sandbox Code Playgroud)

是否有可能在反应原生FCM中实现此功能?请告诉我.

android react-native firebase-cloud-messaging

10
推荐指数
1
解决办法
1303
查看次数