如何在fcm有效负载中向通知添加图标?

问题描述 投票:0回答:1

我创建了一个可以发送通知的函数,但是它发送的通知中没有图标,而我正在使用flutter,所以添加到有效负载中以显示已保存的应用程序图标的关键是什么?在Firebase存储器中。

语言:node.js

node.js firebase push-notification firebase-cloud-messaging firebase-storage
1个回答
0
投票

如果要添加与应用程序图标相同的图标,请使用此

pubspec.yml

dev_dependencies: 
  flutter_launcher_icons: "^0.7.3"

flutter_icons:
  android: "launcher_icon" 
  ios: true
  image_path: "assets/icon/icon.png"

然后在终端中

flutter pub get
flutter pub run flutter_launcher_icons:main

https://pub.dev/packages/flutter_launcher_icons

© www.soinside.com 2019 - 2024. All rights reserved.