Files
react-native-notifications/docs/ios-events.md
2019-09-09 15:39:28 +03:00

459 B
Executable File

id, title, sidebar_label
id title sidebar_label
ios-events iOS iOS specific

registerPushKitRegistered

registerPushKitRegistered

Notifications.events().registerPushKitRegistered((event: RegisteredPushKit) => {
  console.log(event.pushKitToken);
});

registerPushKitNotificationReceived

registerPushKitNotificationReceived

Notifications.events().registerPushKitNotificationReceived((event: object) => {
  console.log(JSON.stringify(event));
});