Phonegap Local Notification
The Local Notification plugin gives developers the ability to post notifications from their app that show up in the device’s notification area. The API for the local notification plugin follows the W3C Web Notifications specification: https://www.w3.org/TR/notifications/
Stuck on a Cordova issue?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
Supported Platforms
- Android
- Browser
- iOS
- Windows
Usage
React
Angular
import { PhonegapLocalNotification } from '@ionic-native/phonegap-local-notification/ngx';
constructor(private localNotification: PhonegapLocalNotification) { }
...
this.localNotification.requestPermission().then(
(permission) => {
if (permission === 'granted') {
// Create the notification
this.localNotification.create('My Title', {
tag: 'message1',
body: 'My body',
icon: 'assets/icon/favicon.ico'
});
}
}
);