Created
November 18, 2016 06:45
-
-
Save kryhtin/fd81cadda0d0c239b444a0979d30651e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_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