I have a clear image that demonstrates the problem
https://i.sstatic.net/M2Hl7.png
This is a simplified overview of the app structure. There is a tab bar navigator with three screens labeled A B C.
TabBar A consists of a stack navigator containing D and E
There is also a Stack navigator including F and G
My dilemma arises when calling screen F. I want the TabBar to remain visible (at the top). What is the most effective method to achieve this? As it stands, if I navigate from A to D, the tab bar remains on top, but not when going from A to F.
I wish to avoid placing F in the same stack as A since F should be accessible from both B and C, and the tab bar should always remain on top.
An excellent example would be the Instagram app where I can access the profile screen (F) from various tab screens while keeping the tab bar consistently on top.
How can I implement this functionality using React-Navigation?
I hope my explanation was thorough, and thank you in advance for your assistance.