reactjs 属性'Navigation'不存在[已关闭]

wrrgggsh  于 2023-05-06  发布在  React
关注(0)|答案(1)|浏览(97)

**关闭。**此题需要debugging details。目前不接受答复。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
昨天关门了。
Improve this question
我将此代码作为返回登录屏幕的按钮之一,但是,当按下它时,我收到错误:
属性“导航”不存在

<TouchableOpacity
  onPress= {() => navigation.navigate('Login')}    
  style = {styles.button}
  >
  <Text style = {{fontSize:22, fontWeight:'bold'}}>
    Progress
  </Text>
</TouchableOpacity>

我试图切换屏幕上点击,但它去这个错误。

bcs8qyzn

bcs8qyzn1#

您的代码示例非常短,为了给予正确的答案,最好从给出错误的组件中查看整个代码。
从错误本身来看,您似乎应该导入并使用useNavigation钩子see the docs

相关问题