├── .buckconfig ├── .bundle └── config ├── .circleci └── config.yml ├── .env.development ├── .env.production ├── .env.staging ├── .eslintrc.js ├── .github └── pull_request_template.md ├── .gitignore ├── .node-version ├── .prettierrc ├── .ruby-version ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── rntemplate │ │ │ └── ReactNativeFlipper.java │ │ ├── development │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── rntemplate │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ └── newarchitecture │ │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ │ ├── components │ │ │ │ └── MainComponentsRegistry.java │ │ │ │ └── modules │ │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ │ ├── CMakeList.txt │ │ │ ├── MainApplicationModuleProvider.cpp │ │ │ ├── MainApplicationModuleProvider.h │ │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ │ ├── MainComponentsRegistry.cpp │ │ │ ├── MainComponentsRegistry.h │ │ │ └── OnLoad.cpp │ │ └── res │ │ │ ├── drawable │ │ │ ├── bootsplash.xml │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── bootsplash_logo.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── staging │ │ └── res │ │ └── values │ │ └── strings.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 ├── .xcode.env ├── Podfile ├── Podfile.lock ├── rntemplate.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Development.xcscheme │ │ ├── Production.xcscheme │ │ └── Staging.xcscheme ├── rntemplate.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── rntemplate │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── BootSplash.storyboard │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── BootSplashLogo.imageset │ │ ├── Contents.json │ │ ├── bootsplash_logo.png │ │ ├── bootsplash_logo@2x.png │ │ └── bootsplash_logo@3x.png │ └── Contents.json │ ├── Info-Development.plist │ ├── Info-Production.plist │ ├── Info-Staging.plist │ └── main.m ├── jest.config.js ├── jest.setup.js ├── jsconfig.json ├── metro.config.js ├── package.json ├── src ├── App.js ├── actions │ ├── GlobalActions.js │ ├── GlobalActions.test.js │ ├── UserActions.js │ └── UserActions.test.js ├── assets │ ├── bootsplash │ │ ├── bootsplash_logo.png │ │ ├── bootsplash_logo@1,5x.png │ │ ├── bootsplash_logo@2x.png │ │ ├── bootsplash_logo@3x.png │ │ ├── bootsplash_logo@4x.png │ │ └── bootsplash_logo_original.png │ ├── ic_home │ │ ├── ic_home.png │ │ ├── ic_home@2x.png │ │ └── ic_home@3x.png │ ├── ic_settings │ │ ├── ic_settings.png │ │ ├── ic_settings@2x.png │ │ └── ic_settings@3x.png │ └── index.js ├── components │ ├── Button.js │ ├── ErrorView.js │ ├── TabBarIcon.js │ ├── TextField.js │ └── index.js ├── constants │ ├── index.js │ ├── navigation.js │ └── status.js ├── controllers │ ├── UserController.js │ ├── UserController.test.js │ ├── index.js │ └── routes.js ├── localization │ ├── Localization.js │ ├── en.js │ └── index.js ├── mocks │ ├── index.js │ └── mockNetworkService.js ├── navigation │ ├── AppNavigator.js │ ├── AuthNavigator.js │ ├── HomeNavigator.js │ ├── ProfileNavigator.js │ └── index.js ├── networking │ ├── NetworkService.js │ ├── config.js │ ├── index.js │ └── interceptors.js ├── reducers │ ├── ErrorReducer.js │ ├── StatusReducer.js │ ├── UserReducer.js │ └── index.js ├── screens │ ├── Home │ │ ├── Home.js │ │ ├── Home.styles.js │ │ ├── Home.test.js │ │ └── __snapshots__ │ │ │ └── Home.test.js.snap │ ├── Login │ │ ├── Login.js │ │ ├── Login.styles.js │ │ ├── Login.test.js │ │ └── __snapshots__ │ │ │ └── Login.test.js.snap │ ├── Profile │ │ ├── Profile.js │ │ ├── Profile.styles.js │ │ ├── Profile.test.js │ │ └── __snapshots__ │ │ │ └── Profile.test.js.snap │ └── index.js ├── selectors │ ├── ErrorSelectors.js │ ├── StatusSelectors.js │ └── UserSelectors.js ├── storage │ └── index.js ├── store │ └── index.js ├── test-utils │ ├── configureStore.js │ ├── index.js │ └── render.js └── theme │ ├── index.js │ ├── shadow.js │ ├── spacing.js │ ├── theme.js │ └── typography.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/.buckconfig -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/.bundle/config -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/.env.production -------------------------------------------------------------------------------- /.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/.env.staging -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | v16.13.2 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/.prettierrc -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.1.0 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/README.md -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/rntemplate/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/debug/java/com/rntemplate/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/development/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/development/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/rntemplate/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/java/com/rntemplate/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rntemplate/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/java/com/rntemplate/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rntemplate/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/java/com/rntemplate/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rntemplate/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/java/com/rntemplate/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rntemplate/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/java/com/rntemplate/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/app/src/main/jni/CMakeList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/jni/CMakeList.txt -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/bootsplash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/res/drawable/bootsplash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/res/mipmap-hdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/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/thisisqubika/react-native-template/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/res/mipmap-mdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/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/thisisqubika/react-native-template/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/res/mipmap-xhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/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/thisisqubika/react-native-template/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/res/mipmap-xxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/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/thisisqubika/react-native-template/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/res/mipmap-xxxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/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/thisisqubika/react-native-template/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/staging/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/app/src/staging/res/values/strings.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/rntemplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/rntemplate.xcodeproj/xcshareddata/xcschemes/Development.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate.xcodeproj/xcshareddata/xcschemes/Development.xcscheme -------------------------------------------------------------------------------- /ios/rntemplate.xcodeproj/xcshareddata/xcschemes/Production.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate.xcodeproj/xcshareddata/xcschemes/Production.xcscheme -------------------------------------------------------------------------------- /ios/rntemplate.xcodeproj/xcshareddata/xcschemes/Staging.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate.xcodeproj/xcshareddata/xcschemes/Staging.xcscheme -------------------------------------------------------------------------------- /ios/rntemplate.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/rntemplate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/rntemplate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/AppDelegate.h -------------------------------------------------------------------------------- /ios/rntemplate/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/AppDelegate.mm -------------------------------------------------------------------------------- /ios/rntemplate/BootSplash.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/BootSplash.storyboard -------------------------------------------------------------------------------- /ios/rntemplate/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/rntemplate/Images.xcassets/BootSplashLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/Images.xcassets/BootSplashLogo.imageset/Contents.json -------------------------------------------------------------------------------- /ios/rntemplate/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo.png -------------------------------------------------------------------------------- /ios/rntemplate/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@2x.png -------------------------------------------------------------------------------- /ios/rntemplate/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@3x.png -------------------------------------------------------------------------------- /ios/rntemplate/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/rntemplate/Info-Development.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/Info-Development.plist -------------------------------------------------------------------------------- /ios/rntemplate/Info-Production.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/Info-Production.plist -------------------------------------------------------------------------------- /ios/rntemplate/Info-Staging.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/Info-Staging.plist -------------------------------------------------------------------------------- /ios/rntemplate/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/ios/rntemplate/main.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/jest.setup.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/jsconfig.json -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/package.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/App.js -------------------------------------------------------------------------------- /src/actions/GlobalActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/actions/GlobalActions.js -------------------------------------------------------------------------------- /src/actions/GlobalActions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/actions/GlobalActions.test.js -------------------------------------------------------------------------------- /src/actions/UserActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/actions/UserActions.js -------------------------------------------------------------------------------- /src/actions/UserActions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/actions/UserActions.test.js -------------------------------------------------------------------------------- /src/assets/bootsplash/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/bootsplash/bootsplash_logo.png -------------------------------------------------------------------------------- /src/assets/bootsplash/bootsplash_logo@1,5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/bootsplash/bootsplash_logo@1,5x.png -------------------------------------------------------------------------------- /src/assets/bootsplash/bootsplash_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/bootsplash/bootsplash_logo@2x.png -------------------------------------------------------------------------------- /src/assets/bootsplash/bootsplash_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/bootsplash/bootsplash_logo@3x.png -------------------------------------------------------------------------------- /src/assets/bootsplash/bootsplash_logo@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/bootsplash/bootsplash_logo@4x.png -------------------------------------------------------------------------------- /src/assets/bootsplash/bootsplash_logo_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/bootsplash/bootsplash_logo_original.png -------------------------------------------------------------------------------- /src/assets/ic_home/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/ic_home/ic_home.png -------------------------------------------------------------------------------- /src/assets/ic_home/ic_home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/ic_home/ic_home@2x.png -------------------------------------------------------------------------------- /src/assets/ic_home/ic_home@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/ic_home/ic_home@3x.png -------------------------------------------------------------------------------- /src/assets/ic_settings/ic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/ic_settings/ic_settings.png -------------------------------------------------------------------------------- /src/assets/ic_settings/ic_settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/ic_settings/ic_settings@2x.png -------------------------------------------------------------------------------- /src/assets/ic_settings/ic_settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/ic_settings/ic_settings@3x.png -------------------------------------------------------------------------------- /src/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/assets/index.js -------------------------------------------------------------------------------- /src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/components/Button.js -------------------------------------------------------------------------------- /src/components/ErrorView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/components/ErrorView.js -------------------------------------------------------------------------------- /src/components/TabBarIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/components/TabBarIcon.js -------------------------------------------------------------------------------- /src/components/TextField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/components/TextField.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/constants/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/constants/index.js -------------------------------------------------------------------------------- /src/constants/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/constants/navigation.js -------------------------------------------------------------------------------- /src/constants/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/constants/status.js -------------------------------------------------------------------------------- /src/controllers/UserController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/controllers/UserController.js -------------------------------------------------------------------------------- /src/controllers/UserController.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/controllers/UserController.test.js -------------------------------------------------------------------------------- /src/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/controllers/index.js -------------------------------------------------------------------------------- /src/controllers/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/controllers/routes.js -------------------------------------------------------------------------------- /src/localization/Localization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/localization/Localization.js -------------------------------------------------------------------------------- /src/localization/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/localization/en.js -------------------------------------------------------------------------------- /src/localization/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/localization/index.js -------------------------------------------------------------------------------- /src/mocks/index.js: -------------------------------------------------------------------------------- 1 | export * from './mockNetworkService'; 2 | -------------------------------------------------------------------------------- /src/mocks/mockNetworkService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/mocks/mockNetworkService.js -------------------------------------------------------------------------------- /src/navigation/AppNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/navigation/AppNavigator.js -------------------------------------------------------------------------------- /src/navigation/AuthNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/navigation/AuthNavigator.js -------------------------------------------------------------------------------- /src/navigation/HomeNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/navigation/HomeNavigator.js -------------------------------------------------------------------------------- /src/navigation/ProfileNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/navigation/ProfileNavigator.js -------------------------------------------------------------------------------- /src/navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/navigation/index.js -------------------------------------------------------------------------------- /src/networking/NetworkService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/networking/NetworkService.js -------------------------------------------------------------------------------- /src/networking/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/networking/config.js -------------------------------------------------------------------------------- /src/networking/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/networking/index.js -------------------------------------------------------------------------------- /src/networking/interceptors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/networking/interceptors.js -------------------------------------------------------------------------------- /src/reducers/ErrorReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/reducers/ErrorReducer.js -------------------------------------------------------------------------------- /src/reducers/StatusReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/reducers/StatusReducer.js -------------------------------------------------------------------------------- /src/reducers/UserReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/reducers/UserReducer.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/screens/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Home/Home.js -------------------------------------------------------------------------------- /src/screens/Home/Home.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Home/Home.styles.js -------------------------------------------------------------------------------- /src/screens/Home/Home.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Home/Home.test.js -------------------------------------------------------------------------------- /src/screens/Home/__snapshots__/Home.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Home/__snapshots__/Home.test.js.snap -------------------------------------------------------------------------------- /src/screens/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Login/Login.js -------------------------------------------------------------------------------- /src/screens/Login/Login.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Login/Login.styles.js -------------------------------------------------------------------------------- /src/screens/Login/Login.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Login/Login.test.js -------------------------------------------------------------------------------- /src/screens/Login/__snapshots__/Login.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Login/__snapshots__/Login.test.js.snap -------------------------------------------------------------------------------- /src/screens/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Profile/Profile.js -------------------------------------------------------------------------------- /src/screens/Profile/Profile.styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Profile/Profile.styles.js -------------------------------------------------------------------------------- /src/screens/Profile/Profile.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Profile/Profile.test.js -------------------------------------------------------------------------------- /src/screens/Profile/__snapshots__/Profile.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/Profile/__snapshots__/Profile.test.js.snap -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/screens/index.js -------------------------------------------------------------------------------- /src/selectors/ErrorSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/selectors/ErrorSelectors.js -------------------------------------------------------------------------------- /src/selectors/StatusSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/selectors/StatusSelectors.js -------------------------------------------------------------------------------- /src/selectors/UserSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/selectors/UserSelectors.js -------------------------------------------------------------------------------- /src/storage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/storage/index.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/test-utils/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/test-utils/configureStore.js -------------------------------------------------------------------------------- /src/test-utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/test-utils/index.js -------------------------------------------------------------------------------- /src/test-utils/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/test-utils/render.js -------------------------------------------------------------------------------- /src/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/theme/index.js -------------------------------------------------------------------------------- /src/theme/shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/theme/shadow.js -------------------------------------------------------------------------------- /src/theme/spacing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/theme/spacing.js -------------------------------------------------------------------------------- /src/theme/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/theme/theme.js -------------------------------------------------------------------------------- /src/theme/typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/src/theme/typography.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisisqubika/react-native-template/HEAD/yarn.lock --------------------------------------------------------------------------------