Ionic-framework: How to hide tab bar in Ionic 2?

Created on 2 Jan 2017  路  3Comments  路  Source: ionic-team/ionic-framework

I have been trying different approach to hide the tab bar when entering into the details page. But somehow, it is harder than I thought.

Most helpful comment

Just put tabsHideOnSubPages in your config like this:

@NgModule({
  declarations: [ MyApp ],
  imports: [
    IonicModule.forRoot(MyApp, {
      tabsHideOnSubPages: true,
    }, {}
  )],
  bootstrap: [IonicApp],
  entryComponents: [ MyApp ],
  providers: []
})

All 3 comments

Just put tabsHideOnSubPages in your config like this:

@NgModule({
  declarations: [ MyApp ],
  imports: [
    IonicModule.forRoot(MyApp, {
      tabsHideOnSubPages: true,
    }, {}
  )],
  bootstrap: [IonicApp],
  entryComponents: [ MyApp ],
  providers: []
})

Hello! Thanks for opening an issue with us! As this seems like more of a support question i will urge that you ask this question on our forum or on our slack channel. Thanks for using Ionic!

Thanks for the issue! This issue is being locked to prevent comments that are not relevant to the original issue. If this is still an issue with the latest version of Ionic, please create a new issue and ensure the template is fully filled out.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Sturgelose picture Sturgelose  路  83Comments

xims picture xims  路  66Comments

marcovtwout picture marcovtwout  路  76Comments

mhartington picture mhartington  路  75Comments

abennouna picture abennouna  路  129Comments