I am new to ionic2, I want to remove tabs from specific page. I am using below code :
import { NavController, App } from 'ionic-angular';
constructor(public navCtrl: NavController, public app: App){
this.navCtrl.push(MainPage);
}
but whenever using above code all pages tabs are removed. I want to remove specific page only. Please help me....
You can hide tabs on sub pages of a tab by using the
tabsHideOnSubPages
attribute:This will not show tabs for sub pages within this tab.