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' 카테고리의 다른 글
[ IONIC ] ionic 5 Slide Effect (0) | 2021.04.15 |
---|---|
[ IONIC ] Error MissingDefaultResource (0) | 2021.04.13 |
[ IONIC ] ionic android statusBar 이슈 (0) | 2021.03.30 |
[ IONIC ] AlertController 백드롭 프로퍼티명 변경 (0) | 2021.03.26 |
[ IONIC ] Android KAKAO SDK 이슈 (0) | 2021.03.03 |