Skip to content

Instantly share code, notes, and snippets.

@kryhtin
Created November 18, 2016 06:45
Show Gist options
  • Save kryhtin/fd81cadda0d0c239b444a0979d30651e to your computer and use it in GitHub Desktop.
Save kryhtin/fd81cadda0d0c239b444a0979d30651e to your computer and use it in GitHub Desktop.
_handlePushNotification(){
PushNotification.setApplicationIconBadgeNumber(4);
PushNotification.localNotificationSchedule({
message: "Schedule Message",
date: new Date(Date.now() + (60 * 1000))
});
PushNotification.localNotification({
message: "Local Notification Message",
playSound: true,
soundName: 'default',
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment