You can also try by setting the tabsHideOnSubPages config property in the app.module.ts file like this:
...
imports: [
IonicModule.forRoot(MyApp, {
// Tabs config
tabsHideOnSubPages: true,
...
})
]
...
From Ionic docs:
tabsHideOnSubPages: boolean
Whether to hide the tabs on child pages or not. If true it will not
show the tabs on child pages.