├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── .watchmanconfig ├── App.js ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnavigationdemo │ │ │ ├── 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 ├── authFlow.gif ├── index.js ├── ios ├── reactNavigationDemo-tvOS │ └── Info.plist ├── reactNavigationDemo-tvOSTests │ └── Info.plist ├── reactNavigationDemo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── reactNavigationDemo-tvOS.xcscheme │ │ └── reactNavigationDemo.xcscheme ├── reactNavigationDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── reactNavigationDemoTests │ ├── Info.plist │ └── reactNavigationDemoTests.m ├── jsconfig.json ├── nestedNavigators.gif ├── package.json ├── readme.md ├── src ├── Actions │ ├── actionCreator.js │ └── actionTypes.js ├── Components │ ├── screen1.js │ └── screen2.js ├── Navigation │ ├── index.js │ └── navigationStack.js └── Reducers │ ├── counterReducer.js │ ├── index.js │ └── navigationReducer.js ├── store.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } 4 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/App.js -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnavigationdemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/app/src/main/java/com/reactnavigationdemo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnavigationdemo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/app/src/main/java/com/reactnavigationdemo/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/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/shubhnik/redux-react-navigation-demos/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/shubhnik/redux-react-navigation-demos/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/shubhnik/redux-react-navigation-demos/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'reactNavigationDemo' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/app.json -------------------------------------------------------------------------------- /authFlow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/authFlow.gif -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/index.js -------------------------------------------------------------------------------- /ios/reactNavigationDemo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/reactNavigationDemo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/reactNavigationDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/reactNavigationDemo.xcodeproj/xcshareddata/xcschemes/reactNavigationDemo-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo.xcodeproj/xcshareddata/xcschemes/reactNavigationDemo-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/reactNavigationDemo.xcodeproj/xcshareddata/xcschemes/reactNavigationDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo.xcodeproj/xcshareddata/xcschemes/reactNavigationDemo.xcscheme -------------------------------------------------------------------------------- /ios/reactNavigationDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo/AppDelegate.h -------------------------------------------------------------------------------- /ios/reactNavigationDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo/AppDelegate.m -------------------------------------------------------------------------------- /ios/reactNavigationDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/reactNavigationDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/reactNavigationDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo/Info.plist -------------------------------------------------------------------------------- /ios/reactNavigationDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemo/main.m -------------------------------------------------------------------------------- /ios/reactNavigationDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemoTests/Info.plist -------------------------------------------------------------------------------- /ios/reactNavigationDemoTests/reactNavigationDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/ios/reactNavigationDemoTests/reactNavigationDemoTests.m -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/jsconfig.json -------------------------------------------------------------------------------- /nestedNavigators.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/nestedNavigators.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/readme.md -------------------------------------------------------------------------------- /src/Actions/actionCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/src/Actions/actionCreator.js -------------------------------------------------------------------------------- /src/Actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/src/Actions/actionTypes.js -------------------------------------------------------------------------------- /src/Components/screen1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/src/Components/screen1.js -------------------------------------------------------------------------------- /src/Components/screen2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/src/Components/screen2.js -------------------------------------------------------------------------------- /src/Navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/src/Navigation/index.js -------------------------------------------------------------------------------- /src/Navigation/navigationStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/src/Navigation/navigationStack.js -------------------------------------------------------------------------------- /src/Reducers/counterReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/src/Reducers/counterReducer.js -------------------------------------------------------------------------------- /src/Reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/src/Reducers/index.js -------------------------------------------------------------------------------- /src/Reducers/navigationReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/src/Reducers/navigationReducer.js -------------------------------------------------------------------------------- /store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/store.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubhnik/redux-react-navigation-demos/HEAD/yarn.lock --------------------------------------------------------------------------------