You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
673 B
Dart
20 lines
673 B
Dart
4 years ago
|
import 'package:flutter_app_badger/flutter_app_badger.dart';
|
||
|
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
|
||
|
import 'package:matrix/matrix.dart';
|
||
|
|
||
|
import 'package:fluffychat/utils/platform_infos.dart';
|
||
|
|
||
|
extension IosBadgeClientExtension on Client {
|
||
|
void updateIosBadge() {
|
||
|
if (PlatformInfos.isIOS) {
|
||
|
// Workaround for iOS not clearing notifications with fcm_shared_isolate
|
||
|
if (!rooms.any((r) =>
|
||
3 years ago
|
r.membership == Membership.invite || (r.notificationCount > 0))) {
|
||
4 years ago
|
// ignore: unawaited_futures
|
||
|
FlutterLocalNotificationsPlugin().cancelAll();
|
||
|
FlutterAppBadger.removeBadge();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|