In my app, I use react-navigation
(v5) and have a BottomTabNavigator
with all my main screens.
I want to make sure that additional tabs (more than 5) are hidden in a special "more" tab which opens a list of the screens - and from there, they should behave like normal tabs, but only shown when the "more" tab is activated.
Here's how the designer imagined it. (Ignore the red counter)
How would you implement something like this using the options of react-navigation
without too much custom code or external dependencies?