├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── .watchmanconfig ├── README.md ├── __tests__ ├── index.android.js └── index.ios.js ├── android ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnativereduxexample │ │ │ ├── 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.json ├── index.android.js ├── index.ios.js ├── ios ├── ReactNativeReduxExample-tvOS │ └── Info.plist ├── ReactNativeReduxExample-tvOSTests │ └── Info.plist ├── ReactNativeReduxExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ReactNativeReduxExample-tvOS.xcscheme │ │ └── ReactNativeReduxExample.xcscheme ├── ReactNativeReduxExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── ReactNativeReduxExampleTests │ ├── Info.plist │ └── ReactNativeReduxExampleTests.m ├── package.json ├── src ├── actions │ ├── actiontypes.js │ └── index.js ├── app.js ├── components │ └── screens │ │ ├── homeTab.js │ │ ├── login.js │ │ ├── screens.js │ │ └── searchTab.js ├── img │ └── checkmark.png └── reducers │ ├── index.js │ └── rootReducer.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/__tests__/index.android.js -------------------------------------------------------------------------------- /__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/__tests__/index.ios.js -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | #Fri Oct 06 19:47:48 EDT 2017 2 | connection.project.dir= 3 | -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- 1 | #Fri Oct 06 19:47:48 EDT 2017 2 | connection.project.dir=.. 3 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativereduxexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/src/main/java/com/reactnativereduxexample/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativereduxexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/src/main/java/com/reactnativereduxexample/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/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/keri4141/React-Native-Navigation-Redux-Example/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/keri4141/React-Native-Navigation-Redux-Example/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/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/app.json -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample.xcodeproj/xcshareddata/xcschemes/ReactNativeReduxExample-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample.xcodeproj/xcshareddata/xcschemes/ReactNativeReduxExample-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample.xcodeproj/xcshareddata/xcschemes/ReactNativeReduxExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample.xcodeproj/xcshareddata/xcschemes/ReactNativeReduxExample.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample/AppDelegate.m -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeReduxExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExample/main.m -------------------------------------------------------------------------------- /ios/ReactNativeReduxExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExampleTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeReduxExampleTests/ReactNativeReduxExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/ios/ReactNativeReduxExampleTests/ReactNativeReduxExampleTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/actiontypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/src/actions/actiontypes.js -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/src/app.js -------------------------------------------------------------------------------- /src/components/screens/homeTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/src/components/screens/homeTab.js -------------------------------------------------------------------------------- /src/components/screens/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/src/components/screens/login.js -------------------------------------------------------------------------------- /src/components/screens/screens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/src/components/screens/screens.js -------------------------------------------------------------------------------- /src/components/screens/searchTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/src/components/screens/searchTab.js -------------------------------------------------------------------------------- /src/img/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/src/img/checkmark.png -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/src/reducers/rootReducer.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keri4141/React-Native-Navigation-Redux-Example/HEAD/yarn.lock --------------------------------------------------------------------------------