Передать массив из stacknavigator в качестве опоры, чтобы экран реагировал родной навигации? - PullRequest
0 голосов
/ 21 апреля 2020
  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}

** Я хочу передать заголовок (массив) в состояние на экран, но я не получаю массив на экране **

...