PlayMaker
Request notification permission, schedule local notifications, and handle received/local+push notifications.
Actions (14)
Permission:
NotificationServicesGetSettings,NotificationServicesRequestPermission,NotificationServicesGetRequestPermissionErrorBuild + schedule:
NotificationServicesCreateBuilder,NotificationServicesScheduleNotification,NotificationServicesGetScheduleNotificationErrorReceive:
NotificationServicesOnNotificationReceived,NotificationServicesGetReceivedNotificationInfoScheduled list:
NotificationServicesGetScheduledNotifications,NotificationServicesGetScheduledNotificationsSuccessResult,NotificationServicesGetScheduledNotificationsErrorCancel:
NotificationServicesCancel,NotificationServicesCancelAllPush registration:
NotificationServicesOnRegisterForPushNotificationsComplete
Key patterns
NotificationServicesGetSettingsis async and finishes with outputs; branch using the returnedstatus.NotificationServicesCreateBuildercaches the built notification;NotificationServicesScheduleNotificationschedules the cached notification.Listener actions (
NotificationServicesOnNotificationReceived,NotificationServicesOnRegisterForPushNotificationsComplete) must stay active to receive events.NotificationServicesCancel/NotificationServicesCancelAllare synchronous (no success/failure events). Re-query scheduled notifications to confirm.
Use cases
Start here: use-cases/README.md
Last updated
Was this helpful?