state = {
title: []
}
render() {
return (<NavigationContainer>
<Stack.Navigator>
<Stack.Screen
name="Dashboard"
component={Dashboard}
initialParams={{title:this.state.title}}
/>
</Stack.Navigator>
</NavigationContainer>}
export default class Dashboard extends React.Component {
constructor(prop) {
super(prop);
console.log( this.props.route.params)
this.state = {
search:"",
templist:this.props.route.params.title,
title: this.props.route.params.title}
** Я хочу передать заголовок (массив) в состояние на экран, но я не получаю массив на экране **