cordova-plugin-buttons
v1.0.2
Published
Allows you to listen to the hardware buttons on Android devices.
Maintainers
Readme
Cordova Buttons Plugin
This plugin allows you to listen to the hardware buttons on Android devices.
Installation
Cordova
cordova plugin add cordova-plugin-buttonsIonic + Cordova
ionic cordova plugin add cordova-plugin-buttonsCapacitor
npm install cordova-plugin-buttonsAPI
subscribe()
Buttons
.subscribe(function(button) {
// your callback
})
.then(function () {
// started
})
.catch(function (err) {
// something broke
});unsubscribe()
Buttons
.unsubscribe()
.then(function () {
// stopped
})
.catch(function (err) {
// something broke
});