How hide nav-bar when jump a new page ( new ionic )

when click gotootherpage jump Otherpage

**this is OtherPage but i want to hide this navbar **
how to do it? thanks everybody!

You can use modal.



import { ModalController } from 'ionic-angular';
import { OtherPage } from './other-page';

export class MyPage {
  constructor(public modalCtrl: ModalController) {
  }

  presentModal() {
    let modal = this.modalCtrl.create(OtherPage);
    modal.present();
  }
}

thank you Chungtheng ! it worked !