├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .github └── images │ ├── dark.jpg │ └── light.jpg ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── LICENSE ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── reactnavigationauthenticationflowswithhooks │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ └── Ionicons.ttf │ │ ├── java │ │ └── com │ │ │ └── reactnavigationauthenticationflowswithhooks │ │ │ ├── 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 ├── index.js ├── ios ├── Podfile ├── Podfile.lock ├── ReactNavigationAuthenticationFlowsWithHooks-tvOS │ └── Info.plist ├── ReactNavigationAuthenticationFlowsWithHooks-tvOSTests │ └── Info.plist ├── ReactNavigationAuthenticationFlowsWithHooks.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ReactNavigationAuthenticationFlowsWithHooks-tvOS.xcscheme │ │ └── ReactNavigationAuthenticationFlowsWithHooks.xcscheme ├── ReactNavigationAuthenticationFlowsWithHooks.xcworkspace │ └── contents.xcworkspacedata ├── ReactNavigationAuthenticationFlowsWithHooks │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── ReactNavigationAuthenticationFlowsWithHooksTests │ ├── Info.plist │ └── ReactNavigationAuthenticationFlowsWithHooksTests.m ├── metro.config.js ├── package.json ├── src ├── App.js ├── components │ ├── AuthContainer.js │ ├── Card.js │ ├── Error.js │ ├── FilledButton.js │ ├── HeaderIconButton.js │ ├── HeaderIconsContainer.js │ ├── Heading.js │ ├── IconButton.js │ ├── Input.js │ ├── Loading.js │ ├── Product.js │ └── TextButton.js ├── config │ └── index.js ├── contexts │ ├── AuthContext.js │ ├── ThemeContext.js │ └── UserContext.js ├── hooks │ ├── useAuth.js │ └── useGet.js ├── navigators │ ├── AuthStackNavigator.js │ └── MainStackNavigator.js ├── screens │ ├── LoginScreen.js │ ├── ProductsListScreen.js │ ├── RegistrationScreen.js │ └── SplashScreen.js ├── themes │ ├── dark.js │ └── light.js └── utils │ ├── createAction.js │ └── sleep.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/images/dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/.github/images/dark.jpg -------------------------------------------------------------------------------- /.github/images/light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/.github/images/light.jpg -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/reactnavigationauthenticationflowswithhooks/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/src/debug/java/com/reactnavigationauthenticationflowswithhooks/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnavigationauthenticationflowswithhooks/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/src/main/java/com/reactnavigationauthenticationflowswithhooks/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnavigationauthenticationflowswithhooks/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/src/main/java/com/reactnavigationauthenticationflowswithhooks/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/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/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/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/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/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/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/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/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/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/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/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/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/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/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/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/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/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/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks.xcodeproj/xcshareddata/xcschemes/ReactNavigationAuthenticationFlowsWithHooks-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks.xcodeproj/xcshareddata/xcschemes/ReactNavigationAuthenticationFlowsWithHooks-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks.xcodeproj/xcshareddata/xcschemes/ReactNavigationAuthenticationFlowsWithHooks.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks.xcodeproj/xcshareddata/xcschemes/ReactNavigationAuthenticationFlowsWithHooks.xcscheme -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks/AppDelegate.m -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks/Info.plist -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooks/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooks/main.m -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooksTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooksTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNavigationAuthenticationFlowsWithHooksTests/ReactNavigationAuthenticationFlowsWithHooksTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/ios/ReactNavigationAuthenticationFlowsWithHooksTests/ReactNavigationAuthenticationFlowsWithHooksTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/AuthContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/AuthContainer.js -------------------------------------------------------------------------------- /src/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/Card.js -------------------------------------------------------------------------------- /src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/Error.js -------------------------------------------------------------------------------- /src/components/FilledButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/FilledButton.js -------------------------------------------------------------------------------- /src/components/HeaderIconButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/HeaderIconButton.js -------------------------------------------------------------------------------- /src/components/HeaderIconsContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/HeaderIconsContainer.js -------------------------------------------------------------------------------- /src/components/Heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/Heading.js -------------------------------------------------------------------------------- /src/components/IconButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/IconButton.js -------------------------------------------------------------------------------- /src/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/Input.js -------------------------------------------------------------------------------- /src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/Loading.js -------------------------------------------------------------------------------- /src/components/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/Product.js -------------------------------------------------------------------------------- /src/components/TextButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/components/TextButton.js -------------------------------------------------------------------------------- /src/config/index.js: -------------------------------------------------------------------------------- 1 | export const BASE_URL = 'http://localhost:1337'; 2 | -------------------------------------------------------------------------------- /src/contexts/AuthContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/contexts/AuthContext.js -------------------------------------------------------------------------------- /src/contexts/ThemeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/contexts/ThemeContext.js -------------------------------------------------------------------------------- /src/contexts/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/contexts/UserContext.js -------------------------------------------------------------------------------- /src/hooks/useAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/hooks/useAuth.js -------------------------------------------------------------------------------- /src/hooks/useGet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/hooks/useGet.js -------------------------------------------------------------------------------- /src/navigators/AuthStackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/navigators/AuthStackNavigator.js -------------------------------------------------------------------------------- /src/navigators/MainStackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/navigators/MainStackNavigator.js -------------------------------------------------------------------------------- /src/screens/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/screens/LoginScreen.js -------------------------------------------------------------------------------- /src/screens/ProductsListScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/screens/ProductsListScreen.js -------------------------------------------------------------------------------- /src/screens/RegistrationScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/screens/RegistrationScreen.js -------------------------------------------------------------------------------- /src/screens/SplashScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/screens/SplashScreen.js -------------------------------------------------------------------------------- /src/themes/dark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/themes/dark.js -------------------------------------------------------------------------------- /src/themes/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/themes/light.js -------------------------------------------------------------------------------- /src/utils/createAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/utils/createAction.js -------------------------------------------------------------------------------- /src/utils/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/src/utils/sleep.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bithoven-dev/ReactNavigationAuthenticationFlowsWithHooks/HEAD/yarn.lock --------------------------------------------------------------------------------