-
Notifications
You must be signed in to change notification settings - Fork 15
Description
Hi,
Thanks for this library.
However it's creating a problem to implement with react navigation.
I would like to highlight my requirement first.
I want vertical tab bar navigator available on every screen that could be nested screen.
So let's say you have 3 main screens in your app
- ScreenA
- ScreenB
- ScreenC
Now ScreenA further have screens let's say ScreenA1, ScreenA2 same with ScreenB.
Now i want to navigate from ScreenA1 to ScreenB but i am not getting react navigation props this.props.navigation and it always returns undefined.
Your library works like a charm if you don't have nested screens, the example you provided have only main screen not the nested screens.
You are already aware that your library accepts only scenes as react component which could be a appcontainer as well, react navigation recommend don't use multiple app containers.
Do you have any example where you can navigate from nested screen to another tab and also tab bar should be visible on every nested screen.
Let's say you want to navigate from Tab1->ScreenA1(nested screen) to Tab2->ScreenB2.
how you will achieve it with react navigation like stacknavigator or switch navigator ?
Please suggest if you have any approach for the same.