在颤动的通知中显示小部件

时间:2021-07-09 05:57:06

标签: android flutter notifications flutter-notification

我想使用颤振在通知中显示一个小部件。我正在使用 awesome_notifications 包,但我无法实现相同的功能。

Future<void> triggerNotification() async{

    await AwesomeNotifications().createNotification(
      content: NotificationContent(
          id: 1,
          channelKey: 'key1',
          title: 'This is Notification title',
          body: 'This is Body of Noti',
          bigPicture: 'https://protocoderspoint.com/wp-content/uploads/2021/05/Monitize-flutter-app-with-google-admob-min-741x486.png',
          notificationLayout: NotificationLayout.BigPicture
      ),
    );

  }

在这个代码段中有一个需要图像 url 的 bigPicture 参数。我已使用 repaintBoundary 将小部件转换为图像。有什么办法可以传递图像小部件而不是 url?谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用 Uri.file 构造函数。这是一个使用来自相机的文件的示例。

  Future<void> triggerNotification() async {
final PickedFile pickedFile = await _picker.getImage(source: ImageSource.camera);
Uri uri = Uri.file(pickedFile.path);
await AwesomeNotifications().createNotification(
  content: NotificationContent(
      id: 1,
      channelKey: 'basic_channel',
      title: 'This is Notification title',
      body: 'This is Body of Noti',
      bigPicture:
          uri.toString(),
      notificationLayout: NotificationLayout.BigPicture),
);

}