I am facing an issue how to handle the default mobile\'s back button which checks the confirmation while exiting from the application, if I pressed the back button there sho
Html:
Close application
TypeScript:
import {Platform} from 'ionic-angular'; @Page({ /*...*/ }) export MyPage { constructor(platform: Platform) { this.platform = platform; } exitApp(){ this.platform.exitApp(); } }