Navigating outside tabs

I’m using Ionic React for an app, the main pages are using tabs, I’m trying to navigate to the login page using the IonTabButton component, every time I visit the login page I’m unable to return to the home page…

<Route path="/app" render={() => <Tabs />} />
<Route exact path="/login" render={() => <SignIn />} />

The login page is outside the tabs, but since Ionic is keeping the previous page in the dom, this breaks navigation…

Please how can I fix it?

Hi, this doesn’t explain how to fix this. Thanks

It explains the basics of react routing, in which your having the issue with. The answer is there, you just need to READ.

1 Like

I am not having issue with routing, I’m experiencing broken navigation, If you click on a link that takes you outside the tabs, navigating back is a problem, you will be stuck…