我想显示组通知,而不是像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中实现此功能?请告诉我.