I don't understand where is the navigation
from (line 46-48 ):
答案 0 :(得分:0)
const MyHomeScreen = ({ navigation }) => (
<MyNavScreen banner="Home Screen" navigation={navigation} />
);
等于
class MyHomeScreen extends React.Component{
constructor(props){
super(props);
}
render(){
const {navigation} = this.props;
return <MyNavScreen banner="Home Screen" navigation={navigation} />
}}