我正在学习react-native
导航https://reactnavigation.org/docs/intro/。我在那里的例子中看到
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Welcome',
};
render() {
const { navigate } = this.props.navigation;
return (
<View>
<Text>Hello, Chat App!</Text>
<Button
onPress={() => navigate('Chat')}
title="Chat with Lucy"
/>
</View>
);
}
}
我不明白这行代码到底是干什么用的const { navigate } = this.props.navigation;