flutter_local_notifications:在Android中,通知不会显示在前台

fcy6dtqo  于 2023-08-07  发布在  Flutter
关注(0)|答案(1)|浏览(205)

我正在Flutter应用程序中使用flutter_local_notifications包,我已经初始化包并配置了所有内容,但通知没有显示在前台(浮动通知)...
我正在测试小米POCO X3 Pro与Android 12和MIUI 13.0.5..
有什么想法请?

1yjd4xko

1yjd4xko1#

经过大量的试验,我的工作是将importance设置为AndroidNotificationDetails中的AndroidNotificationDetails中的Importance.max,如下所示:

const _notificationDetails = NotificationDetails(
  android: AndroidNotificationDetails(
    'your_channel_id',
    'your_channel_name',
    importance: Importance.max,
  ),
);

await FlutterLocalNotificationsPlugin().show(
  0,
  'Notification Title',
  'Notification Body',
  _notificationDetails, // Here you should pass the `NotificationDetails` object
  payload: 'item x',
);

字符串

相关问题