Кнопка устройства (platform.registerBackButtonAction) не работает для кнопки возврата приложения и не работает для кнопки возврата устройства.
Может кто-нибудь помочь мне, пожалуйста?
Как мне решить мою проблему?
код: -
ionViewDidLoad() {
this.navBar.backButtonClick = (e: UIEvent) => {
const alert = this.alertCtrl.create({
title: 'App termination',
message: 'Do you want to close the app?',
buttons: [{
text: 'Cancel',
role: 'cancel',
handler: () => {
console.log('Application exit prevented!');
}
}, {
text: 'Close App',
handler: () => {
this.platform.exitApp(); // Close this application
}
}]
});
alert.present();
}
}