首先创建文件夹pages,同时pages下创建Index.js文件。
在index.ios.js 引入Index.js文件。
import Index from './pages/Index';
同时引入NavigatorIOS组件。
import { NavigatorIOS,} from 'react-native';
使用initialRoute来传递一个component,title,还有passProps 传入的我们想要的属性(值)
<NavigatorIOS
initialRoute={{
component: Index,
title: '首页',
}}/>
这样就实现了简单的页面跳转。