Where add tabsHideOnSubPages?

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?

1 Like

Ok found it:

app.module.ts:

  imports: [
    IonicModule.forRoot(MyApp,{tabsPlacement: 'top',tabsHideOnSubPages: true})
  ],
14 Likes

you’re amazing, thank you