├── .buckconfig ├── .dependabot └── config.yml ├── .editorconfig ├── .env ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ ├── android.yml │ └── ios.yml ├── .gitignore ├── .huskyrc ├── .lintstagedrc ├── .prettierrc.js ├── .stylelintrc.js ├── .watchmanconfig ├── README.md ├── __mocks__ └── react-native-config.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── examplewixapp │ │ │ └── DetoxTest.java │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ └── Fontisto.ttf │ │ ├── java │ │ └── com │ │ │ └── examplewixapp │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── babel.config.js ├── commitlint.config.js ├── e2e ├── config.json ├── init.ts └── tests │ └── SignIn.test.ts ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── examplewixapp-tvOS │ └── Info.plist ├── examplewixapp-tvOSTests │ └── Info.plist ├── examplewixapp.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── examplewixapp-tvOS.xcscheme │ │ └── examplewixapp.xcscheme ├── examplewixapp.xcworkspace │ └── contents.xcworkspacedata ├── examplewixapp │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── examplewixappTests │ ├── Info.plist │ └── examplewixappTests.m ├── jest.config.js ├── metro.config.js ├── package.json ├── preview.gif ├── src ├── App.ts ├── components │ ├── Button │ │ ├── index.tsx │ │ └── styled.ts │ ├── Container │ │ └── index.ts │ ├── Form │ │ └── index.ts │ ├── FormItem │ │ └── index.ts │ ├── Input │ │ └── index.ts │ ├── Spinner │ │ └── index.ts │ ├── Text │ │ └── index.ts │ └── index.ts ├── config.ts ├── forms │ └── SignIn │ │ ├── data.ts │ │ ├── index.tsx │ │ ├── styled.ts │ │ └── types.ts ├── hocs │ ├── index.ts │ └── withNativeBaseRoot │ │ └── index.tsx ├── hooks │ └── useButtonListener.ts ├── index.d.ts ├── modules │ └── Core │ │ └── screens │ │ ├── Home │ │ ├── index.tsx │ │ └── types.ts │ │ ├── Initializing │ │ └── index.tsx │ │ ├── NestedScreenA │ │ ├── index.tsx │ │ └── types.ts │ │ ├── NestedScreenB │ │ ├── index.tsx │ │ └── types.ts │ │ └── SignIn │ │ └── index.tsx ├── navigation.ts ├── services │ ├── navigation │ │ └── index.ts │ └── wait │ │ └── index.ts └── static │ └── images │ ├── counter.png │ ├── counter@2x.png │ ├── counter@3x.png │ ├── home.png │ ├── home@2x.png │ └── home@3x.png ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.buckconfig -------------------------------------------------------------------------------- /.dependabot/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.dependabot/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.github/workflows/ios.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.huskyrc -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@code-quality/prettier-config') 2 | -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/react-native-config.js: -------------------------------------------------------------------------------- 1 | export default {} 2 | -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/androidTest/java/com/examplewixapp/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/androidTest/java/com/examplewixapp/DetoxTest.java -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/examplewixapp/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/java/com/examplewixapp/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/examplewixapp/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/java/com/examplewixapp/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@code-quality/commitlint-config'] } 2 | -------------------------------------------------------------------------------- /e2e/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/e2e/config.json -------------------------------------------------------------------------------- /e2e/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/e2e/init.ts -------------------------------------------------------------------------------- /e2e/tests/SignIn.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/e2e/tests/SignIn.test.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | import './src/App' 2 | -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/examplewixapp-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/examplewixapp-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/examplewixapp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/examplewixapp.xcodeproj/xcshareddata/xcschemes/examplewixapp-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp.xcodeproj/xcshareddata/xcschemes/examplewixapp-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/examplewixapp.xcodeproj/xcshareddata/xcschemes/examplewixapp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp.xcodeproj/xcshareddata/xcschemes/examplewixapp.xcscheme -------------------------------------------------------------------------------- /ios/examplewixapp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/examplewixapp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp/AppDelegate.h -------------------------------------------------------------------------------- /ios/examplewixapp/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp/AppDelegate.m -------------------------------------------------------------------------------- /ios/examplewixapp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/examplewixapp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/examplewixapp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/examplewixapp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp/Info.plist -------------------------------------------------------------------------------- /ios/examplewixapp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixapp/main.m -------------------------------------------------------------------------------- /ios/examplewixappTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixappTests/Info.plist -------------------------------------------------------------------------------- /ios/examplewixappTests/examplewixappTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/ios/examplewixappTests/examplewixappTests.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/jest.config.js -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/package.json -------------------------------------------------------------------------------- /preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/preview.gif -------------------------------------------------------------------------------- /src/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/App.ts -------------------------------------------------------------------------------- /src/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/components/Button/index.tsx -------------------------------------------------------------------------------- /src/components/Button/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/components/Button/styled.ts -------------------------------------------------------------------------------- /src/components/Container/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/components/Container/index.ts -------------------------------------------------------------------------------- /src/components/Form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/components/Form/index.ts -------------------------------------------------------------------------------- /src/components/FormItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/components/FormItem/index.ts -------------------------------------------------------------------------------- /src/components/Input/index.ts: -------------------------------------------------------------------------------- 1 | export { Input } from 'native-base' 2 | -------------------------------------------------------------------------------- /src/components/Spinner/index.ts: -------------------------------------------------------------------------------- 1 | export { Spinner } from 'native-base' 2 | -------------------------------------------------------------------------------- /src/components/Text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/components/Text/index.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/forms/SignIn/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/forms/SignIn/data.ts -------------------------------------------------------------------------------- /src/forms/SignIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/forms/SignIn/index.tsx -------------------------------------------------------------------------------- /src/forms/SignIn/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/forms/SignIn/styled.ts -------------------------------------------------------------------------------- /src/forms/SignIn/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/forms/SignIn/types.ts -------------------------------------------------------------------------------- /src/hocs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/hocs/index.ts -------------------------------------------------------------------------------- /src/hocs/withNativeBaseRoot/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/hocs/withNativeBaseRoot/index.tsx -------------------------------------------------------------------------------- /src/hooks/useButtonListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/hooks/useButtonListener.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'styled-is' 2 | -------------------------------------------------------------------------------- /src/modules/Core/screens/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/modules/Core/screens/Home/index.tsx -------------------------------------------------------------------------------- /src/modules/Core/screens/Home/types.ts: -------------------------------------------------------------------------------- 1 | export interface IProps { 2 | componentId: string 3 | } 4 | -------------------------------------------------------------------------------- /src/modules/Core/screens/Initializing/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/modules/Core/screens/Initializing/index.tsx -------------------------------------------------------------------------------- /src/modules/Core/screens/NestedScreenA/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/modules/Core/screens/NestedScreenA/index.tsx -------------------------------------------------------------------------------- /src/modules/Core/screens/NestedScreenA/types.ts: -------------------------------------------------------------------------------- 1 | export interface IProps { 2 | componentId: string 3 | } 4 | -------------------------------------------------------------------------------- /src/modules/Core/screens/NestedScreenB/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/modules/Core/screens/NestedScreenB/index.tsx -------------------------------------------------------------------------------- /src/modules/Core/screens/NestedScreenB/types.ts: -------------------------------------------------------------------------------- 1 | export interface IProps { 2 | componentId: string 3 | } 4 | -------------------------------------------------------------------------------- /src/modules/Core/screens/SignIn/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/modules/Core/screens/SignIn/index.tsx -------------------------------------------------------------------------------- /src/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/navigation.ts -------------------------------------------------------------------------------- /src/services/navigation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/services/navigation/index.ts -------------------------------------------------------------------------------- /src/services/wait/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/services/wait/index.ts -------------------------------------------------------------------------------- /src/static/images/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/static/images/counter.png -------------------------------------------------------------------------------- /src/static/images/counter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/static/images/counter@2x.png -------------------------------------------------------------------------------- /src/static/images/counter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/static/images/counter@3x.png -------------------------------------------------------------------------------- /src/static/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/static/images/home.png -------------------------------------------------------------------------------- /src/static/images/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/static/images/home@2x.png -------------------------------------------------------------------------------- /src/static/images/home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/src/static/images/home@3x.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developer239/redux-react-native-wix-navigation-v2-with-auth/HEAD/yarn.lock --------------------------------------------------------------------------------