Code for Local Noification
PushNotification.localNotification({
autoCancel: true,
title: 'Test Title',
message: 'Test Message',
vibrate: true,
vibration: 1000,
playSound: false,
data: {},
});
Trying to get in configure onNotification
PushNotification.configure({
onRegister: function(token) {
console.log('TOKEN:', token);
},
onNotification: function(notification) {
console.log('NOTIFICATION:', notification);
},
permissions: {
alert: true,
badge: true,
sound: true,
},
popInitialNotification: true,
requestPermissions: true,
});