mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-14 01:54:58 +08:00
459 B
Executable File
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));
});