**关闭。**此题需要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>
我试图切换屏幕上点击,但它去这个错误。
1条答案
按热度按时间bcs8qyzn1#
您的代码示例非常短,为了给予正确的答案,最好从给出错误的组件中查看整个代码。
从错误本身来看,您似乎应该导入并使用
useNavigation
钩子see the docs