How do we pass props or params to a tab navigation component. So for I tried the follow but no luck
I am trying to send the param or prop to the component HomeTab
<Tab.Navigator>
<Tab.Screen name="Home" component={HomeTab} MyParam='custom message' />
<Tab.Screen name="Video" component={VideoTab} />
</Tab.Navigator>