I’m using local notifications as stated in the docs, I have a timer function that triggers the notification and the notification is as follows:
this.notification = {
id: 1,
title: 'Fitness App',
text: 'Timer Finished',
at: Date.now()
};
Scheduled with:
this.localNotifications.schedule(this.notification);
This works fine but it doesn’t pop down like a normal notification should. I have attached a gif to this post if someone can view it and tell me if this is the expected behavior of the local notifications. If you look at the status bar at the top (right at the start of the video) you will see a bell icon appear showing I got the notification. But it doesn’t pop down as I expect it to.