This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * 一个简单的 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'; |
NewerOlder