├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ ├── react.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── demo │ │ │ └── MainActivity.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app ├── actions │ ├── actionTypes.js │ └── couterActions.js ├── components │ └── home.js ├── containers │ ├── app.js │ ├── navigationBar.js │ └── reactReduxApp.js └── reducers │ ├── counter.js │ └── index.js ├── index.android.js ├── index.ios.js ├── index.web.js ├── ios ├── demo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── demo.xcscheme ├── demo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── demoTests │ ├── Info.plist │ └── demoTests.m ├── package.json └── web └── webpack.config.js /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/README.md -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/react.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/react.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/demo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/src/main/java/com/demo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'demo' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/app/actions/actionTypes.js -------------------------------------------------------------------------------- /app/actions/couterActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/app/actions/couterActions.js -------------------------------------------------------------------------------- /app/components/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/app/components/home.js -------------------------------------------------------------------------------- /app/containers/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/app/containers/app.js -------------------------------------------------------------------------------- /app/containers/navigationBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/app/containers/navigationBar.js -------------------------------------------------------------------------------- /app/containers/reactReduxApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/app/containers/reactReduxApp.js -------------------------------------------------------------------------------- /app/reducers/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/app/reducers/counter.js -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/index.ios.js -------------------------------------------------------------------------------- /index.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/index.web.js -------------------------------------------------------------------------------- /ios/demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/ios/demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/demo.xcodeproj/xcshareddata/xcschemes/demo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/ios/demo.xcodeproj/xcshareddata/xcschemes/demo.xcscheme -------------------------------------------------------------------------------- /ios/demo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/ios/demo/AppDelegate.h -------------------------------------------------------------------------------- /ios/demo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/ios/demo/AppDelegate.m -------------------------------------------------------------------------------- /ios/demo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/ios/demo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/demo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/ios/demo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/ios/demo/Info.plist -------------------------------------------------------------------------------- /ios/demo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/ios/demo/main.m -------------------------------------------------------------------------------- /ios/demoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/ios/demoTests/Info.plist -------------------------------------------------------------------------------- /ios/demoTests/demoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/ios/demoTests/demoTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/package.json -------------------------------------------------------------------------------- /web/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febobo/react-native-redux-es6/HEAD/web/webpack.config.js --------------------------------------------------------------------------------