Я получил Id как Контейнер приложений из другой навигации.
Как я могу получить каждый полученный Id на экране StackNavigation?
const Parent = createStackNavigator(
{
User: User, // <----- I want to bring Id to this screen.
Noti: Noti,
},
{
initialRouteName: 'User',
defaultNavigationOptions: ({navigation}) => ({
headerStyle: {
backgroundColor: '#004680',
},
headerTintColor: '#fff',
headerTitleStyle: {
fontSize:20,
},
}),
}
);
const AppContainer = createAppContainer(Parent);
export default class App extends React.Component {
render() {
return <AppContainer id={this.props.id} />; // <----- When I printed this value, it correctly.
}
}