Уведомление нельзя удалить или провести для удаления. Вот как я создал это уведомление:
Код: Выделить всё
Future onShowPersistentProgressNotification({String? title, String? body}) async {
final notificationDetail = NotificationDetails(
iOS: const DarwinNotificationDetails(),
android: AndroidNotificationDetails(
'sync_channel',
'Sync Channel',
channelDescription: _channel?.description,
icon: '@drawable/ic_stat_ic_notification',
importance: Importance.max,
priority: Priority.max,
color: AppColors.primary,
ongoing: true,
autoCancel: false,
showProgress: true,
maxProgress: 5,
progress: 2,
onlyAlertOnce: true,
),
);
await _notificationsPlugin.show(
ConstantUtils.persistentProgressNotificationId,
title ?? 'Title',
body ?? 'Body',
notificationDetail,
);
}
Подробнее здесь: https://stackoverflow.com/questions/796 ... in-flutter