React Navigation的简单使用(一)

2017-05-16  本文已影响2563人  随遇而安_2750

说明:从0.44版本开始,Navigator被从react native的核心组件库中剥离到了一个名为react-native-deprecated-custom-components的单独模块中,而且官方推荐使用React Navigation导航组件,这个已经默认为官方推荐了。

1.StackNavigator导航

这就是一般的导航器,默认情况下,StackNavigator配置为具有熟悉的iOS和Android外观:iOS上的新屏幕从右侧滑出,从Android的底部渐隐,在iOS上,StackNavigator也可以配置为模式样式,屏幕从底部滑入。写这篇文章的时候,我还没有找到在安卓设备上改变进出动画的配置。

使用介绍:

在入口文件处定义:这里简化了文件间的依赖关系。

import {StackNavigator} from 'react-navigation';

import Home from './test/Home';
import Page from './test/Page';

const gewdDemo01 = StackNavigator({
        Home: {screen: Home},
        Page: {screen: Page}
    },{
        initialRouteName: 'Home', // 默认显示界面
    }
);


AppRegistry.registerComponent('gewdDemo01', () => gewdDemo01);

这样的话,是默认加上官方的导航栏效果的,如果想去掉的话,可以设置为:

const gewdDemo01 = StackNavigator({
        Home: {screen: Home},
        Page: {screen: Page}
    },{
        initialRouteName: 'Home', // 默认显示界面
        headerMode: 'none'
    }
);

导航整体配置列表:

查看Home文件:

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 * @flow
 */

import React, { Component } from 'react';
import {
  StyleSheet,
  Text,
  View
} from 'react-native';

export default class Home extends Component {
  static navigationOptions = {
    title: 'Home',
  }

  constructor(props){
    super(props);

  }

  gotoPage(){
    const {navigate} = this.props.navigation;
    navigate('Page',{
      user:'Page'
    });
  }

  render() {
    return (
      <View style={{flex:1,justifyContent:'center',alignItems:'center',backgroundColor:'#888888'}}>
        <Text>Home</Text>

        <View style={{width:100,height:40,backgroundColor:'red',justifyContent:'center',alignItems:'center'}}>
          <Text style={{color:'#fff'}} onPress={()=>{this.gotoPage()}}>点击跳转</Text>
        </View>
      </View>
    );
  }
}


分析gotoPage方法,navigate('组件名称'),意思是跳转到相应的页面,这是在上面的入口文件中定义好的,我们只需要传递即可,并且要加引号。后面的{}里的内容是传递的参数,在Page页面中我们可以通过如下代码拿到他们:

componentDidMount() {
    // 传参
    const {params} = this.props.navigation.state;
    console.log(params.user);
  }

查看Page页面:

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 * @flow
 */

import React, { Component } from 'react';
import {
  StyleSheet,
  Text,
  View,
  Button
} from 'react-native';

export default class Page extends Component {
  static navigationOptions = ({navigation}) => {
        return {
          title:`Hello ${navigation.state.params.user}`,
          headerStyle:{
            backgroundColor:'pink'  // 导航条样式
          },
          headerTintColor:'blue' // 标题文字颜色
        }
  }


  constructor(props){
    super(props);
  }

  gobackToHome(){
    // 返回
    this.props.navigation.goBack()
  }
  componentDidMount() {
    // 传参
    const {params} = this.props.navigation.state;
    console.log(params.id);
  }
  render() {
    return (
      <View style={{flex:1,justifyContent:'center',alignItems:'center',backgroundColor:'#888888'}}>
        <Text>Page</Text>
        <View style={{width:100,height:40,backgroundColor:'green',justifyContent:'center',alignItems:'center'}}>
          <Text style={{color:'#fff'}} onPress={()=>{this.gobackToHome()}}>返回</Text>
        </View>
      </View>
    );
  }
}


默认的返回是在导航条上的箭头按钮,并且返回键退出也已经封装好了。

navigationOptions是对导航部分的配置项,注意写法,这种写法是比较实用的,因为可以拿到父组件传过来的参数作为标题的一部分显示,而且不影响配置项的设置。

配置项有很多,详细请看如下列表:

演示效果如图:

router.gif
上一篇 下一篇

猜你喜欢

热点阅读