├── .buckconfig ├── .editorconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── navexpredux │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.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 ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app ├── app.js ├── assets │ └── svg │ │ ├── IconSetting.js │ │ └── index.js ├── components │ ├── Article.js │ ├── Articles.js │ └── Settings.js ├── containers │ ├── AppContainer.js │ ├── Article.js │ └── Articles.js ├── redux │ ├── modules │ │ ├── article.js │ │ ├── articles.js │ │ └── routing.js │ └── reducers.js └── store │ └── configureStore.js ├── demo ├── android.gif ├── debugger.png └── ios.gif ├── index.android.js ├── index.ios.js ├── ios ├── navExpRedux.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── navExpRedux.xcscheme ├── navExpRedux │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── navExpReduxTests │ ├── Info.plist │ └── navExpReduxTests.m └── package.json /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/navexpredux/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/app/src/main/java/com/navexpredux/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/navexpredux/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/app/src/main/java/com/navexpredux/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/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/chunghe/React-Native-News-Boilerplate/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/chunghe/React-Native-News-Boilerplate/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/chunghe/React-Native-News-Boilerplate/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/app.js -------------------------------------------------------------------------------- /app/assets/svg/IconSetting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/assets/svg/IconSetting.js -------------------------------------------------------------------------------- /app/assets/svg/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/assets/svg/index.js -------------------------------------------------------------------------------- /app/components/Article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/components/Article.js -------------------------------------------------------------------------------- /app/components/Articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/components/Articles.js -------------------------------------------------------------------------------- /app/components/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/components/Settings.js -------------------------------------------------------------------------------- /app/containers/AppContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/containers/AppContainer.js -------------------------------------------------------------------------------- /app/containers/Article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/containers/Article.js -------------------------------------------------------------------------------- /app/containers/Articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/containers/Articles.js -------------------------------------------------------------------------------- /app/redux/modules/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/redux/modules/article.js -------------------------------------------------------------------------------- /app/redux/modules/articles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/redux/modules/articles.js -------------------------------------------------------------------------------- /app/redux/modules/routing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/redux/modules/routing.js -------------------------------------------------------------------------------- /app/redux/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/redux/reducers.js -------------------------------------------------------------------------------- /app/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/app/store/configureStore.js -------------------------------------------------------------------------------- /demo/android.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/demo/android.gif -------------------------------------------------------------------------------- /demo/debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/demo/debugger.png -------------------------------------------------------------------------------- /demo/ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/demo/ios.gif -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/navExpRedux.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/ios/navExpRedux.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/navExpRedux.xcodeproj/xcshareddata/xcschemes/navExpRedux.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/ios/navExpRedux.xcodeproj/xcshareddata/xcschemes/navExpRedux.xcscheme -------------------------------------------------------------------------------- /ios/navExpRedux/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/ios/navExpRedux/AppDelegate.h -------------------------------------------------------------------------------- /ios/navExpRedux/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/ios/navExpRedux/AppDelegate.m -------------------------------------------------------------------------------- /ios/navExpRedux/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/ios/navExpRedux/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/navExpRedux/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/ios/navExpRedux/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/navExpRedux/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/ios/navExpRedux/Info.plist -------------------------------------------------------------------------------- /ios/navExpRedux/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/ios/navExpRedux/main.m -------------------------------------------------------------------------------- /ios/navExpReduxTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/ios/navExpReduxTests/Info.plist -------------------------------------------------------------------------------- /ios/navExpReduxTests/navExpReduxTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/ios/navExpReduxTests/navExpReduxTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunghe/React-Native-News-Boilerplate/HEAD/package.json --------------------------------------------------------------------------------