cordova-plugin-badge
cordova-plugin-badge copied to clipboard
Ionic 2 usage sample
Hello guys,
There's an usage sample to implement this plugin with ionic 2? I'm very excited about use badge count without need to send a push notification to user and I think this plugin can help me a lot.
@felipefda hi guys, how to badge increase when app receive notification form FCM
+1
+1, how to increase the badge on a push notification?
Its can be used like this: not tested on the device But i am guessing it will work.
import { Http } from '@angular/http'; ... declare var cordova: any;
onDeviceReady() { cordova.plugins.notification.badge.hasPermission(function (granted) { alert("hasPermission granted"+ granted); }); cordova.plugins.notification.badge.set(1);
}