@Shola wrote:
Hello guys , i am having issue with how to disable the back-button hardware. i only want it to work on the homepage of my app and not other pages. it works well when you are on the homepage but also works on every other page that opens. i want users to be able to use the back button on all the pages except the homepage.
This is my codedeactivateBackButton() { this.subscribe = this.platform.backButton.subscribeWithPriority(666666,()=>{ if (this.constructor.name == "HomePage") { if (window.confirm("Do you want to exit app")) { navigator["app"].exitApp(); } } }); }
Posts: 1
Participants: 1