This is my first post on SO, so apologies if I'm not following the correct format. I'm building my first app and have run into a big problem. It's built with the tab navigator from React Navigation v 5.x.
What I want to achieve is to:
I have tried this https://reactnavigation.org/docs/hello-react-navigation/#passing-additional-props (I fail to set the props to pass down)
and this React Native - pass props from One screen to another screen (using tab navigator to navigate) (Deprecated version of react-navigation)
and this https://stackoverflow.com/a/56764509/12974771 (Also old version of react-navigation)
and Redux but there are no examples available with the current version of react navigation.
I'm at the end of my rope with this and really need some step by step on how to achieve this. Here's a rough sketch of what I want to do: https://i.stack.imgur.com/rbSCL.png
The way I thought about it is sending the parent state down as props via callback, but I can't find a way to send props through the screen components in the up-to-date version of react navigation...
This is my navigation setup:
const Tab = createBottomTabNavigator()
export default class MyApp extends Component{
constructor(props) {
super(props);
}
render(){
return (
<NavigationContainer>
<Tab.Navigator
screenOptions={({ route }) => ({
tabBarIcon: ({ focused, color, size }) => {
let iconName;
if (route.name === 'My tests') {
iconName = focused
? 'ios-list-box'
: 'ios-list';
} else if (route.name === 'Testroom') {
iconName = focused ? 'ios-body' : 'ios-body';
}
return <Ionicons name={iconName} size={size} color={color} />;
},
})}
tabBarOptions={{
activeTintColor: 'tomato',
inactiveTintColor: 'gray',
}}
>
<Tab.Screen name="My tests" component={MyTests}/> //This is where I want to send props
<Tab.Screen name="Testroom" component={TestRoom} /> //This is where I want to send props
</Tab.Navigator>
</NavigationContainer>
I've read this https://reactnavigation.org/docs/redux-integration but it makes no sense to me. How does this fit into a tree of components? What goes where? Please help!
you can use the property 'children' to pass an element type jsx like instead of the property 'component', is recomended from react-native.
On this way you can pass props to component example:
<tab.Screen
name="home"
children={()=><ComponentName propName={propValue}/>}
/>
is neccesary to use '()=>' because the property children need a function that return a jsx element, it's functional.