react native navigation

使用React Navigation进行跳转,主要有两个页面Home和Chat

import React from 'react';
import {AppRegistry, View, Text, StyleSheet, Button} from 'react-native';
import {StackNavigator} from 'react-navigation';

class HomeScreen extends React.Component {
  static navigationOptions = {
    title: 'Home'
  };
  render() {
    const {navigate} = this.props.navigation;
    return (
      
        Hello, this is Home!
        

效果如下

react native navigation_第1张图片
Screenshot_20170611-223544.png

react native navigation_第2张图片
Screenshot_20170611-223538.png

你可能感兴趣的:(react native navigation)