Full screen nav.push() on tabs page

hey guys,
i’ve upgraded to beta 11 and now when i open a modal from a tab page using nav.push(page), tab is visible, is it possible to make full page?

2 Likes

You have to create a modal with the help of the modalCtrl: ModalController
Right now you only pushing another page on the stack.

let profileModal = this.modalCtrl.create(Profile, { userId: 8675309 });
profileModal.present();

1 Like