@dannyggg23 wrote:
how disable back button android ionic 4.12.0
lastTimeBackPress = 0;
timePeriodToExit = 2000;this.platform.backButton.subscribe( async() => {
if (new Date().getTime() - this.lastTimeBackPress < this.timePeriodToExit) {
navigator[‘app’].exitApp();
} else if ( this.router.url === ‘/home’ ) {
const toast = await this.toastController.create({
message: ‘Press back again to exit App’,
showCloseButton: false,
duration: 2000
});
toast.present();
this.lastTimeBackPress = new Date().getTime();
}
});
Posts: 1
Participants: 1