如何为 IOS 推送通知设置自定义图标?

How to set a custom icon to an IOS push notification?

我目前正在为 IOS 向我的 Flutter 应用程序添加通知,我想在 Android 上添加类似于 largeIcon 的内容,到目前为止我没有找到这样做的方法,只添加一个不是解决方案的图像,因为即使用户展开通知我也只想要一个右侧的图标(在这种情况下图像也会展开,这对我的用例来说是不希望的)。

作为替代方案,我想知道是否可以更改通知应用程序图标。就我环顾四周而言,这也是不可能的,但与此同时,我看到了这张通知图片(第一个和最后一个)具有自定义图片并且应用程序图标较小。

如何在我的应用程序中执行此操作?我在文档中找不到任何关于如何做的方法。

您可以通过通讯通知来做到这一点。来自 HIG:

The system automatically displays a large version of your app icon at the leading edge of each notification; in a communication notification, the system displays the sender’s contact image — or avatar — badged with a small version of your icon.

Here 是关于如何在您的应用中实现通信通知的文档。