We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
showPermissionScreenRecordingIssuedNotification
1 parent e23a45a commit c4fc261Copy full SHA for c4fc261
1 file changed
lib/core/util/notification_helper.dart
@@ -45,4 +45,18 @@ class NotificationHelper {
45
),
46
);
47
}
48
+
49
+ void showPermissionScreenRecordingIssuedNotification() {
50
+ localNotification?.show(
51
+ DateTime.now().millisecond,
52
+ 'app_name'.tr(),
53
+ 'screen_recording_issued'.tr(),
54
+ const NotificationDetails(
55
+ macOS: DarwinNotificationDetails(
56
+ presentAlert: true,
57
+ presentSound: true,
58
+ ),
59
60
+ );
61
+ }
62
0 commit comments