Flutter firebase 消息推送通知格式 3 行

Posted

技术标签:

【中文标题】Flutter firebase 消息推送通知格式 3 行【英文标题】:Flutter firebase messaging push notification format 3 lines 【发布时间】:2020-05-09 17:06:58 【问题描述】:

我正在为我的项目处理 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
        , 

我想在 iosandroid 上以 3 行格式显示通知。 我怎样才能做到这一点?

提前致谢。

【问题讨论】:

您好..等待答复... 【参考方案1】:

用“id”、“name”、...为“data”添加“subtitle”

【讨论】:

以上是关于Flutter firebase 消息推送通知格式 3 行的主要内容,如果未能解决你的问题,请参考以下文章

Flutter Firebase前台推送通知未显示但后台正在运行

如何使用firebase推送通知唤醒flutter android应用程序

Flutter:如何使用 fcm 以编程方式发送推送通知

如何翻译 Firebase 推送通知?

Flutter 推送通知应用背景:firebase_messaging

Flutter:数据更改时的 Firebase 推送通知