FE/IONIC

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

최진훈 2021. 4. 30. 10:57

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.platform.ready().then(() => {
	this.appExitConfigPrevent();
};

 

'FE > IONIC' 카테고리의 다른 글

[ IONIC ] iOS IDFA 추적 동의  (0) 2021.05.12
[ IONIC ] 현재 URL  (0) 2021.04.16
[ IONIC ] ionic 5 Slide Effect  (0) 2021.04.15
[ IONIC ] Error MissingDefaultResource  (0) 2021.04.13
[ IONIC ] Android backButton control  (0) 2021.04.05