├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── react_native_redux_proj │ │ │ ├── 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 ├── actions │ ├── ActionTypes.js │ └── HomeAction.js ├── containers │ ├── Home.js │ └── SplashPage.js ├── images │ └── index1.jpg ├── index.js ├── reducers │ ├── Home.js │ └── index.js └── store │ └── index.js ├── index.android.js ├── index.ios.js ├── ios ├── react_native_redux_proj.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── react_native_redux_proj.xcscheme ├── react_native_redux_proj │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── react_native_redux_projTests │ ├── Info.plist │ └── react_native_redux_projTests.m └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "vsicons.presets.angular": true 3 | } -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/react_native_redux_proj/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/app/src/main/java/com/react_native_redux_proj/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/react_native_redux_proj/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/app/src/main/java/com/react_native_redux_proj/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/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/lazyperson/react_native_redux_proj/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/lazyperson/react_native_redux_proj/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/lazyperson/react_native_redux_proj/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'react_native_redux_proj' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/app/App.js -------------------------------------------------------------------------------- /app/actions/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/app/actions/ActionTypes.js -------------------------------------------------------------------------------- /app/actions/HomeAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/app/actions/HomeAction.js -------------------------------------------------------------------------------- /app/containers/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/app/containers/Home.js -------------------------------------------------------------------------------- /app/containers/SplashPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/app/containers/SplashPage.js -------------------------------------------------------------------------------- /app/images/index1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/app/images/index1.jpg -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/app/index.js -------------------------------------------------------------------------------- /app/reducers/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/app/reducers/Home.js -------------------------------------------------------------------------------- /app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/app/reducers/index.js -------------------------------------------------------------------------------- /app/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/app/store/index.js -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/react_native_redux_proj.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/ios/react_native_redux_proj.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/react_native_redux_proj.xcodeproj/xcshareddata/xcschemes/react_native_redux_proj.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/ios/react_native_redux_proj.xcodeproj/xcshareddata/xcschemes/react_native_redux_proj.xcscheme -------------------------------------------------------------------------------- /ios/react_native_redux_proj/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/ios/react_native_redux_proj/AppDelegate.h -------------------------------------------------------------------------------- /ios/react_native_redux_proj/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/ios/react_native_redux_proj/AppDelegate.m -------------------------------------------------------------------------------- /ios/react_native_redux_proj/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/ios/react_native_redux_proj/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/react_native_redux_proj/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/ios/react_native_redux_proj/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/react_native_redux_proj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/ios/react_native_redux_proj/Info.plist -------------------------------------------------------------------------------- /ios/react_native_redux_proj/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/ios/react_native_redux_proj/main.m -------------------------------------------------------------------------------- /ios/react_native_redux_projTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/ios/react_native_redux_projTests/Info.plist -------------------------------------------------------------------------------- /ios/react_native_redux_projTests/react_native_redux_projTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/ios/react_native_redux_projTests/react_native_redux_projTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lazyperson/react_native_redux_proj/HEAD/package.json --------------------------------------------------------------------------------