This question seems a bit complex but i am sure there must be a solution. I think with using redux i can handle this but i am curious about other solutions.
This is my App.js
<Tab.Navigator>
<Tab.Screen name='Home' component={HomeScreen} />
<Tab.Screen name='Favourites' children={()=><Favourites favItems={propValue}/>} />
<Tab.Screen name='Order' children={()=><Order orders={propValue}/>} />
</Tab.Navigator>
The problem is the propValues that i wanna pass are inside HomeScreen component as a state value. I need to reach them in App.js and send them to Favourites and Order components as a prop. Without using redux is there any solution for that ?