cordova plugin screenstatus
1.0.0
Plugin Cordova para monitorar mudanças de status da tela. Funciona mesmo se o aplicativo não estiver em primeiro plano.
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
} ) ;