react-native使用react-navigation进行页面跳转导航的示例


Posted in Javascript onSeptember 07, 2017

首先要确认已经配置好react-native的环境。

# 创建一个native应用,SimpleApp,然后进入项目目录
react-native init SimpleApp
cd SimpleApp


# 通过npm安装最新版本的react-navigation
npm install --save react-navigation


# 运行程序
react-native run-android

引入Stack Navigator

对于我们的应用程序,我们想要使用堆栈式导航器,因为我们想要一个概念的“堆栈”导航,其中每个新屏幕都放在堆栈顶部,然后从堆栈顶部移除一个屏幕。

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

class HomeScreen extends React.Component {
 static navigationOptions = {
  title: 'Welcome world',
 };
 render() {
  return <Text>Hello, Navigation!</Text>;
 }
}
const SimpleApp = StackNavigator({
 Home: { screen: HomeScreen },
});

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

屏幕的title在静态导航选项中是可配置的,在这里可以设置许多选项来配置导航器中的屏幕显示。

添加一个新的屏幕

class ChatScreen extends React.Component {
 static navigationOptions = {
  title: 'Chat with Lucy',
 };
 render() {
  return (
   <View>
    <Text>Chat with Lucy</Text>
   </View>
  );
 }
}

然后在HomeScreen添加一个按钮,链接到ChatScreen

class HomeScreen extends React.Component {
 static navigationOptions = {
  title: 'Welcome',
 };
 render() {
  const { navigate } = this.props.navigation;
  return (
   <View>
    <Text>Hello, Chat App!</Text>
    <Button
     onPress={() => navigate('Chat')}
     title="Chat with Lucy"
    />
   </View>
  );
 }

最后将添加的两个页面添加到StackNavigator中

const SimpleApp = StackNavigator({
 Home: { screen: HomeScreen },
 Chat: { screen: ChatScreen },
});

在这里,可以传递参数,从HomeScreen传递

class HomeScreen extends React.Component {
 static navigationOptions = {
  title: 'Welcome',
 };
 render() {
  const { navigate } = this.props.navigation;
  return (
   <View>
    <Text>Hello, Chat App!</Text>
    <Button
     onPress={() => navigate('Chat', { user: 'Lucy' })}
     title="Chat with Lucy"
    />
   </View>
  );
 }
}

ChatScreen接收参数

class ChatScreen extends React.Component {
 // Nav options can be defined as a function of the screen's props:
 static navigationOptions = ({ navigation }) => ({
  title: `Chat with ${navigation.state.params.user}`,
 });
 render() {
  // The screen's current route is passed in to `props.navigation.state`:
  const { params } = this.props.navigation.state;
  return (
   <View>
    <Text>Chat with {params.user}</Text>
   </View>
  );
 }
}

添加第三个页面,Three.js, ChatScreen跳转到Three

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;

修改ChatScreen的配置

class ChatScreen
extends React.Component {

static navigationOptions = {

title: 'Chat with Lucy',

};

render() {

const { navigate } =
this.props.navigation;

return (

<View>

<Text>Chat with Lucy</Text>

<Button

onPress={() =>
navigate('Three')}

title="to to ThreeScreen"

/>

</View>

);

}

}

最后的结果如下:

react-native使用react-navigation进行页面跳转导航的示例 

react-native使用react-navigation进行页面跳转导航的示例 

react-native使用react-navigation进行页面跳转导航的示例 

最后给出完整代码

文件 index.android.js

import SimpleApp
from './App';

文件App.js

import React
from 'react';

import {

AppRegistry,

Text,

View,

Button,

} from 'react-native';

import { StackNavigator }
from 'react-navigation';

import ThreeScreen
from './Three.js';

 

class HomeScreen
extends React.Component {

static navigationOptions = {

title: 'Welcome',

};

render() {

const { navigate } =
this.props.navigation;

return (

<View>

<Text>Hello, Chat App!</Text>

<Button

onPress={() =>
navigate('Chat')}

title="Chat with Lucy"

/>

</View>

);

}

}

 

class ChatScreen
extends React.Component {

static navigationOptions = {

title: 'Chat with Lucy',

};

render() {

const { navigate } =
this.props.navigation;

return (

<View>

<Text>Chat with Lucy</Text>

<Button

onPress={() =>
navigate('Three')}

title="to to ThreeScreen"

/>

</View>

);

}

}

 

const SimpleApp =
StackNavigator({

Home: { screen:
HomeScreen },

Chat: { screen:
ChatScreen },

Three: { screen:
ThreeScreen},

});

 

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

文件Three.js

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;

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
jquery 获取标签名(tagName)示例代码
Jul 11 Javascript
判断文件是否正在被使用的JS代码
Dec 21 Javascript
jquery easyui使用心得
Jul 07 Javascript
Node.js+Express配置入门教程
May 19 Javascript
jquery树形菜单效果的简单实例
Jun 06 Javascript
JS原型链怎么理解
Jun 27 Javascript
微信小程序左右滑动的实现代码
Dec 15 Javascript
JS 实现分页打印功能
May 16 Javascript
一个简单的node.js界面实现方法
Jun 01 Javascript
在vue中实现点击选择框阻止弹出层消失的方法
Sep 15 Javascript
VUE+elementui面包屑实现动态路由详解
Nov 04 Javascript
微信小程序实现自定义底部导航
Nov 18 Javascript
详解vue-cli构建项目反向代理配置
Sep 07 #Javascript
vue数字类型过滤器的示例代码
Sep 07 #Javascript
vue监听scroll的坑的解决方法
Sep 07 #Javascript
react高阶组件经典应用之权限控制详解
Sep 07 #Javascript
React + webpack 环境配置的方法步骤
Sep 07 #Javascript
微信小程序之页面拦截器的示例代码
Sep 07 #Javascript
基于js粘贴事件paste简单解析以及遇到的坑
Sep 07 #Javascript
You might like
无线电广播的开始
2002/01/30 无线电
注册页面之前先验证用户名是否存在的php代码
2012/07/14 PHP
php实现memcache缓存示例讲解
2013/12/04 PHP
yii2.0实现验证用户名与邮箱功能
2015/12/22 PHP
twig模板获取全局变量的方法
2016/02/05 PHP
PHP入门教程之正则表达式基本用法实例详解(正则匹配,搜索,分割等)
2016/09/11 PHP
PHP表单验证内容是否为空的实现代码
2016/11/14 PHP
Laravel框架源码解析之入口文件原理分析
2020/05/14 PHP
JavaScript Perfection kill 测试及答案
2010/03/23 Javascript
js hover 定时器(实例代码)
2013/11/12 Javascript
深入分析node.js的异步API和其局限性
2016/09/05 Javascript
AngularJS 中使用Swiper制作滚动图不能滑动的解决方法
2016/11/15 Javascript
微信小程序开发图片拖拽实例详解
2017/05/05 Javascript
vue-cli实现多页面多路由的示例代码
2018/01/30 Javascript
微信小程序slider组件使用详解
2018/01/31 Javascript
javascript中UMD规范的代码推演
2018/08/29 Javascript
基于vue2.0实现仿百度前端分页效果附实现代码
2018/10/30 Javascript
js实现微信聊天效果
2020/08/09 Javascript
用smtplib和email封装python发送邮件模块类分享
2014/02/17 Python
从0开始的Python学习014面向对象编程(推荐)
2019/04/02 Python
Python学习笔记之变量、自定义函数用法示例
2019/05/28 Python
python pandas写入excel文件的方法示例
2019/06/25 Python
jupyter note 实现将数据保存为word
2020/04/14 Python
matplotlib bar()实现多组数据并列柱状图通用简便创建方法
2021/02/24 Python
基于CSS3 animation动画属性实现轮播图效果
2017/09/12 HTML / CSS
美国手机支架公司:PopSockets
2019/11/27 全球购物
如何编写优秀的食品项目创业计划书
2014/01/23 职场文书
进步之星获奖感言
2014/02/22 职场文书
单位法定代表人授权委托书
2014/09/20 职场文书
领导班子整改方案
2014/10/25 职场文书
学院党委班子四风问题自查报告及整改措施
2014/10/25 职场文书
男方家长婚礼答谢词
2015/09/29 职场文书
2016年优秀少先队员事迹材料
2016/02/26 职场文书
电子表的操作介绍说明书
2019/10/28 职场文书
postgres之jsonb属性的使用操作
2021/06/23 PostgreSQL
CSS控制继承中的height能变为可继承吗
2022/06/10 HTML / CSS