import React,{Component} from 'react'; import { AppRegistry, Text, View, Button, } from 'react-native'; class Three extends React.Component { static navigationOptions = { title: 'Three Sceen', }; render() { const { goBack } = this.props.navigation; return ( <Button title="Go back" onPress={() => goBack()} /> ); } } export default Three;
navigation进行页面跳转导航的示例(2)
内容版权声明:除非注明,否则皆为本站原创文章。