Hello,
I want to hide my tabs on subpages, I found this snipet:
ionicBootstrap(MyApp,null, {tabsHideOnSubPages:"true"});
But where I have to add this line?
Hello,
I want to hide my tabs on subpages, I found this snipet:
ionicBootstrap(MyApp,null, {tabsHideOnSubPages:"true"});
But where I have to add this line?
Ok found it:
app.module.ts:
imports: [
IonicModule.forRoot(MyApp,{tabsPlacement: 'top',tabsHideOnSubPages: true})
],
you’re amazing, thank you