React-Native Navigator-this.props.navigation....

render() {
        return (
            <View>
                <Text>2</Text>
                <Button
                    title = "跳转到指定的页面"
                    onPress = {() => this.props.navigation.push('Profile')}
                />
                <Button
                    title = "跳转到指定的页面"
                    onPress = {() => this.props.navigation.navigate('Home')}
                />
                <Button
                    title = "返回上一个页面"
                    onPress = {() => this.props.navigation.goBack()}
                />

                <Button
                    title = "返回第一个页面"
                    onPress = {() => this.props.navigation.popToTop()}
                />
            </View>
        )
    }

  

posted @ 2018-11-28 11:31  年少的你如此美丽  阅读(1442)  评论(0编辑  收藏  举报