How to create local notification in background app for Ionic 3? I have try tutorial in here https://ionicframework.com/docs/native/local-notifications/ but it just for foreground app
Thank's in advance..
How to create local notification in background app for Ionic 3? I have try tutorial in here https://ionicframework.com/docs/native/local-notifications/ but it just for foreground app
Thank's in advance..
You should schedule your notification in a specific time. for example this notification will be triggered after an hour.
this.localNotifications.schedule({
text: 'Delayed ILocalNotification',
at: new Date(new Date().getTime() + 3600),//add 3600 seconds to current time.
});