How do I hide tabs when I navigate to a page? It seems like a basic thing but I see no documentation on it. This is the skeleton of my app root:
<IonApp>
<IonReactRouter>
<IonTabs>
<IonRouterOutlet basePath="/">
...<Route /> are here
<Redirect exact from="/" to="/home" />
</IonRouterOutlet>
<IonTabBar slot="bottom">
<IonTabButton tab="" href="/home">
....
</IonTabButton>
<IonTabButton tab="" href="/search">
....
</IonTabButton>
<IonTabButton tab="" href="/more">
....
</IonTabButton>
</IonTabBar>
</IonTabs>
Thanks!
Kevin
2 posts - 1 participant