FE/IONIC 19

[ IONIC ] 안드로이드 뒤로가기 무효

1. app.component.ts private appExitConfig() { this.platform.backButton.subscribe(async () => { if (this.backButtonClickCount === 0) { this.backButtonClickCount++; const toast = await this.toastCtrl.create({ message: '뒤로가기 버튼을 한번 더 누르시면 앱이 종료됩니다.', duration: 2000 }); toast.present(); setTimeout(() => { this.backButtonClickCount = 0; }, 2000); } else { navigator['app'].exitApp(); } }); } this.plat..

FE/IONIC 최진훈 2021.04.30

[ IONIC ] Android backButton control

private appExitConfig() { this.platform.backButton.subscribe(async () => { if (this.backButtonClickCount === 0) { this.navController.back(); this.backButtonClickCount++; const toast = await this.toastCtrl.create({ message: '뒤로가기 버튼을 한번 더 누르시면 앱이 종료됩니다.', duration: 1000 }); toast.present(); setTimeout(() => { this.backButtonClickCount = 0; }, 1000); } else { navigator['app'].exitApp(); } }); }

FE/IONIC HEON.D 2021.04.05