5

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..

Brian Yudhanto
  • 137
  • 2
  • 11

1 Answers1

2

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.

});
Zrelli Majdi
  • 1,204
  • 2
  • 11
  • 16