Ionic 5 Disable iOS Swipe Back in ONE PAGE ONLY

Hi, I want to disable swiper back only on home page and work in other pages.
i tried in home.page.ts

private routerOutlet: IonRouterOutlet
ionViewDidEnter() {
    this.routerOutlet.swipeGesture = false;
  }

  ionViewWillLeave() {
    this.routerOutlet.swipeGesture = true;
  }

but it does not work and disabled in whole app.

please help me to fix this thanks