我正在为我的项目开发Firebase推送通知。我的所有设备都收到通知。
我的问题是iOS设备以以下格式显示通知。
Title :
Subtitle :
text/body:
我的安卓设备以以下格式显示通知。
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 和安卓上以 3 行格式显示通知。 我怎样才能做到这一点?
提前谢谢。
将"副标题"添加到"数据"与"id","名称",...