Flutter Firebase消息传递推送通知格式3行

时间:2020-01-23 12:15:31

标签: android firebase flutter firebase-cloud-messaging firebase-notifications

我正在为我的项目开发Firebase推送通知。我正在所有设备上收到通知。

我的问题是 iOS设备以以下格式显示通知。

Title  :
Subtitle :
text/body:

我的android设备以以下格式显示通知。

Title :
text/body:

下面是我用于发送通知的有效载荷。

 var payload = {   "notification":{
          "title":"New Price Alert! "+ clientDataAfter.productname,
"subtitle":"Get before its gone",
          "body":"Old Price "+clientDataAfter.oldprice+" || New Price "+ clientDataAfter.newprice,
          "click_action":"FLUTTER_NOTIFICATION_CLICK",
        },
        "data" : {
          "id":ID,
          "name": Name,
          "newprice":newprice
        }, }

我想在iOS和android上以3行格式显示通知。 我该如何实现?

谢谢。

1 个答案:

答案 0 :(得分:0)

在带有“ id”,“ name”,...的“ data”中添加“ subtitle”。