使用 Props 和 Navigation 时出错 - React Native 5x

Getting Error using Props and Navigation in same - React Native 5x

我遇到错误 props.title 这是我的代码 enter image description here

1: https://i.stack.imgur.com/Bjrb4.png 我收到了这个错误 enter image description here

navigation.Opendrawer 不工作...PFA...code 当我点击时没有任何反应

语法错误,使用这个

const CustomHeader = (props) => { 
    const {title, home} = props;
    ....
    props.navigation.goBack() 
}

const CustomHeader = ({title, home, navigation}) => {
   .....
   navigation.goBack() // <== No props.navigation
}

请指定传递给 CustomerHeder 组件中的 prop 的值。

<CustomerHeder title={"title"} isHome={"something"}/>

const CustomerHeder = (props) => {
  
  const {title, isHome} = props   


   return ...
}

你也可以试试...

const CustomerHeder = ({title , isHome}) => {
  
   


   return ...
}