【发布时间】:2021-06-05 05:00:03
【问题描述】:
我已经尝试观看了很多教程,这些教程展示了如何使用像这样的大图样式信息来实现大图的 natification
var bigPictureStyleInformation = BigPictureStyleInformation(
FilePathAndroidBitmap(attachmentPicturePath),
contentTitle: '<b>Attached Image</b>',
htmlFormatContentTitle: true,
summaryText: 'Test Image',
htmlFormatSummaryText: true,
);
但我真正想要的是像这样在 Android 中显示带有小图像的通知
如果我有一个字符串图像路径,如何发出这样的通知?所以看来我必须从服务器下载图像,然后将其“附加”到通知中。如何做到这一点
【问题讨论】:
标签: flutter flutter-local-notification