0

我想让发送到我的颤振应用程序的 FCM 通知不可删除(当单击清除按钮或向左滑动通知时,用户无法清除它)。我搜索它,但没有关于如何使用颤振和 FCM 通知处理它的答案。

4

1 回答 1

1

使通知不可移除......只需ongoing: trueflutter_local_notifications包装中制作

AndroidNotificationDetails androidDetails = new AndroidNotificationDetails("channelId",
    notificationModel.title, notificationModel.body,
    ongoing: true);
于 2021-11-03T11:14:48.643 回答