├── .babelrc ├── .buckconfig ├── .editorconfig ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── LICENSE ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ ├── react.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── app │ │ │ └── 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 ├── bin └── flow-check.js ├── config ├── index.js └── package.json ├── index.android.js ├── index.ios.js ├── interfaces └── external-modules │ ├── react-redux.js │ └── redux.js ├── ios ├── App.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── App.xcscheme ├── App │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── AppTests │ ├── AppTests.m │ └── Info.plist ├── package.json └── src ├── api ├── create.js └── modules │ ├── package.json │ └── posts.js ├── components ├── Button │ ├── index.js │ └── styles.js ├── Container │ ├── index.js │ └── styles.js ├── Counter │ ├── index.js │ └── styles.js ├── Link │ ├── index.js │ └── styles.js ├── NavigationBar │ └── index.js ├── Title │ ├── index.js │ └── styles.js └── package.json ├── containers ├── CounterContainer │ └── index.js ├── LauchContainer │ └── index.js └── package.json ├── index.js ├── scenes ├── app.js ├── index.js └── package.json ├── store ├── create.js ├── modules │ ├── counter.js │ └── package.json ├── package.json └── reducers.js ├── theme ├── colors.js └── package.json └── utils └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native-stage-0"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/.buckconfig -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/.eslintrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/react.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/app/react.gradle -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/app/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/app/src/main/java/com/app/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/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/LeoLeBras/react-native-redux-starter-kit/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/LeoLeBras/react-native-redux-starter-kit/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/LeoLeBras/react-native-redux-starter-kit/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /bin/flow-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/bin/flow-check.js -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- 1 | export const API = 'https://api.github.com' 2 | -------------------------------------------------------------------------------- /config/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@config" 3 | } 4 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/index.ios.js -------------------------------------------------------------------------------- /interfaces/external-modules/react-redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/interfaces/external-modules/react-redux.js -------------------------------------------------------------------------------- /interfaces/external-modules/redux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/interfaces/external-modules/redux.js -------------------------------------------------------------------------------- /ios/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/ios/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/ios/App.xcodeproj/xcshareddata/xcschemes/App.xcscheme -------------------------------------------------------------------------------- /ios/App/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/ios/App/AppDelegate.h -------------------------------------------------------------------------------- /ios/App/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/ios/App/AppDelegate.m -------------------------------------------------------------------------------- /ios/App/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/ios/App/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/App/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/ios/App/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/ios/App/Info.plist -------------------------------------------------------------------------------- /ios/App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/ios/App/main.m -------------------------------------------------------------------------------- /ios/AppTests/AppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/ios/AppTests/AppTests.m -------------------------------------------------------------------------------- /ios/AppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/ios/AppTests/Info.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/package.json -------------------------------------------------------------------------------- /src/api/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/api/create.js -------------------------------------------------------------------------------- /src/api/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@api" 3 | } 4 | -------------------------------------------------------------------------------- /src/api/modules/posts.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | // ... 4 | -------------------------------------------------------------------------------- /src/components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/Button/index.js -------------------------------------------------------------------------------- /src/components/Button/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/Button/styles.js -------------------------------------------------------------------------------- /src/components/Container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/Container/index.js -------------------------------------------------------------------------------- /src/components/Container/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/Container/styles.js -------------------------------------------------------------------------------- /src/components/Counter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/Counter/index.js -------------------------------------------------------------------------------- /src/components/Counter/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/Counter/styles.js -------------------------------------------------------------------------------- /src/components/Link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/Link/index.js -------------------------------------------------------------------------------- /src/components/Link/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/Link/styles.js -------------------------------------------------------------------------------- /src/components/NavigationBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/NavigationBar/index.js -------------------------------------------------------------------------------- /src/components/Title/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/Title/index.js -------------------------------------------------------------------------------- /src/components/Title/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/components/Title/styles.js -------------------------------------------------------------------------------- /src/components/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@components" 3 | } 4 | -------------------------------------------------------------------------------- /src/containers/CounterContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/containers/CounterContainer/index.js -------------------------------------------------------------------------------- /src/containers/LauchContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/containers/LauchContainer/index.js -------------------------------------------------------------------------------- /src/containers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@containers" 3 | } 4 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/index.js -------------------------------------------------------------------------------- /src/scenes/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/scenes/app.js -------------------------------------------------------------------------------- /src/scenes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/scenes/index.js -------------------------------------------------------------------------------- /src/scenes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@scenes" 3 | } 4 | -------------------------------------------------------------------------------- /src/store/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/store/create.js -------------------------------------------------------------------------------- /src/store/modules/counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/store/modules/counter.js -------------------------------------------------------------------------------- /src/store/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@redux" 3 | } 4 | -------------------------------------------------------------------------------- /src/store/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@store" 3 | } 4 | -------------------------------------------------------------------------------- /src/store/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/store/reducers.js -------------------------------------------------------------------------------- /src/theme/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeoLeBras/react-native-redux-starter-kit/HEAD/src/theme/colors.js -------------------------------------------------------------------------------- /src/theme/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@theme" 3 | } 4 | -------------------------------------------------------------------------------- /src/utils/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@utils" 3 | } 4 | --------------------------------------------------------------------------------