Ionic 2 - Disabling back button for a specific view

前端 未结 5 2047
小鲜肉
小鲜肉 2020-12-04 15:26

So I\'m messing around a bit with Ionic 2, and I want to know how to disable the back button for a specific view.

What I\'m doing is this.nav.

5条回答
  •  借酒劲吻你
    2020-12-04 16:09

    You can navigate to the page as a modal:

    let modal = Modal.create(SomePage, navParams);
    modal.onDismiss(datos => { 
    //dissmiss callback 
    });  
    this.nav.present(modal );
    

提交回复
热议问题