Skip to content

Instantly share code, notes, and snippets.

View wd's full-sized avatar

Dong Wang wd

View GitHub Profile
@wd
wd / App.js
Last active October 21, 2017 00:17
React-native react-redux with react-navigation StackNavigator single page demo
/**
* 一个简单的 RN 应用,有 2 个页面,使用了 react-navigation 的 StackNavigator 来做界面管理
* 为了说明如何使用 redux,以及如何让 redux 和 StackNavigator 配合
* 为了容易理解,把所有内容都放到了一个页面里面,实际开发的时候不要这么做
* 参考:
* https://github.com/jackielii/simplest-redux-example
* http://www.ruanyifeng.com/blog/2016/09/redux_tutorial_part_three_react-redux.html
*/
import React, { Component } from 'react';