I currently have the following structure for my app:
(Stack)
- Launch (Stack)
- App (Tabs)
- Home (Stack)
- Discussions (Stack)
- …
Inside the discussion stack I have a screen (Chat) where I'd like to remove the tabbar. From what I understood in the docs, if I want to have this behaviour I should place the Chat screen at the top like this:
(Stack)
- Launch (Stack)
- Chat (Screen)
- App (Tabs)
- Home (Stack)
- Discussions (Stack)
- …
Is this the correct approach? I saw there where also ways to hide the tabBar inside a specific stack as mentioned here but that didn't work for me.