cordova plugin screenstatus
1.0.0
Cordova plugin to monitor status changes of the screen. Works even if the app is not in the foreground.
cordova plugin add cordova-plugin-screenstatus
ionic cordova plugin add cordova-plugin-screenstatus
npm install cordova-plugin-screenstatus
ScreenStatus
.subscribe(function(turnedOn) {
// true, false
})
.then(function () {
// subscribed
})
.catch(function (err) {
// something broke
});
ScreenStatus
.unsubscribe()
.then(function () {
// unsubscribed
})
.catch(function (err) {
// something broke
});