我创建了一个可以发送通知的函数,但是它发送的通知中没有图标,而我正在使用flutter,所以添加到有效负载中以显示已保存的应用程序图标的关键是什么?在Firebase存储器中。
语言:node.js
如果要添加与应用程序图标相同的图标,请使用此
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