1

我想使用颤振在通知中显示一个小部件。我正在使用 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
      ),
    );

  }

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

4

1 回答 1

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),
);

}

于 2021-07-10T13:34:08.230 回答