push_notification_permissions

Creator: coderz1093

Last updated:

0 purchases

push_notification_permissions Image
push_notification_permissions Images
Add to Cart

Description:

push notification permissions

Push Notification Permissions #
Fork from notification_permissions change Swift to Objective-C
Package to check for and ask for Notification Permissions on iOS and Android.
Checking Notification Permission Status #
Future<PermissionStatus> permissionStatus =
PushNotificationPermissions.getNotificationPermissionStatus();
copied to clipboard
This method will return an enum with the following values:
enum PermissionStatus {
granted,
unknown,
denied
}
copied to clipboard
In iOS, a permission is unknown when the user hasn’t accepted or refuse the notification permissions. In Android this state will never occur, since the permission will be granted by default and it will be denied if the user goes to the app settings and turns off notifications for the app.
Requesting Notification Permissions #
If the PermissionStatus is denied or unknown, we can ask the user for the Permissions:
Future<PermissionStatus> permissionStatus = PushNotificationPermissions.getNotificationPermissionStatus({NotificationSettingsIos iosSettings, bool openSettings});
copied to clipboard
On Android, if the permission is denied, this method will open the app settings.
In iOS, if the permission is unknown, it will show an alert window asking the user for the permission. On the other hand, if the permission is denied it has the same behaviour as Android, opening the app settings.
Also in iOS if you set openSettings to false settings window won't be opened. You will get denied status.
NotificationPermissions.getNotificationPermissionStatus returns status after user select answer from native permission popup.
Note: if the permission is granted, this method will not do anything.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.