├── .gitignore ├── LICENSE ├── README.md ├── RUN_DEPLOY.md ├── package.json ├── template.config.js ├── template ├── .babelrc ├── .bundle │ └── config ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .gitlab │ ├── .gitkeep │ └── merge_request_templates │ │ └── Default.md ├── .husky │ ├── .gitignore │ ├── commit-msg │ └── pre-commit ├── .prettierrc.js ├── .watchmanconfig ├── .yarn │ └── releases │ │ └── yarn-4.4.0.cjs ├── .yarnrc.yml ├── App.tsx ├── Gemfile ├── Gemfile.lock ├── __tests__ │ └── App.test.tsx ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── demoapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── 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 ├── commitlint.config.js ├── defaultIcon.jpeg ├── environment │ ├── .env.development │ ├── .env.production │ └── .env.staging ├── index.js ├── ios │ ├── .xcode.env │ ├── Config.xcconfig │ ├── DemoApp.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── DemoApp (dev).xcscheme │ │ │ ├── DemoApp (production).xcscheme │ │ │ ├── DemoApp (staging).xcscheme │ │ │ └── DemoApp.xcscheme │ ├── DemoApp.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── DemoApp │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ ├── DemoAppTests │ │ ├── DemoAppTests.m │ │ └── Info.plist │ ├── Podfile │ └── Podfile.lock ├── jest.config.js ├── metro.config.js ├── package.json ├── patches │ ├── react-native-keyboard-aware-scroll-view+0.9.5.patch │ └── react-native-size-matters+0.4.2.patch ├── reactotron.config.js ├── settings.json ├── src │ ├── App.tsx │ ├── api │ │ ├── interface │ │ │ ├── authenticate.ts │ │ │ └── general.ts │ │ ├── modules │ │ │ └── api-app │ │ │ │ ├── authenticate.ts │ │ │ │ ├── general.ts │ │ │ │ └── notification.ts │ │ └── request.ts │ ├── app-redux │ │ ├── hooks.ts │ │ ├── sagas │ │ │ ├── resourceSaga.ts │ │ │ ├── rootSaga.ts │ │ │ └── userInfoSaga.ts │ │ ├── slices │ │ │ ├── initSlice.ts │ │ │ ├── languageSlice.ts │ │ │ ├── resourceSlice.ts │ │ │ ├── types.ts │ │ │ └── userInfoSlice.ts │ │ └── store.ts │ ├── assets │ │ ├── fonts │ │ │ ├── Montserrat-Light.ttf │ │ │ ├── Montserrat-Regular.ttf │ │ │ └── Montserrat-SemiBold.ttf │ │ ├── icon │ │ │ ├── ic_account.png │ │ │ ├── ic_back.png │ │ │ ├── ic_calendar.png │ │ │ ├── ic_check_radio.png │ │ │ ├── ic_check_square.png │ │ │ ├── ic_home.png │ │ │ ├── ic_notification.png │ │ │ ├── ic_select.png │ │ │ ├── ic_setting.png │ │ │ ├── ic_uncheck_radio.png │ │ │ └── ic_uncheck_square.png │ │ ├── images.ts │ │ ├── locates │ │ │ ├── en.ts │ │ │ └── jp.ts │ │ ├── metrics.ts │ │ ├── photo │ │ │ └── img_default_image.png │ │ ├── sizes.ts │ │ └── themes.ts │ ├── components │ │ ├── base │ │ │ ├── AlertMessage.ts │ │ │ ├── CheckBox.tsx │ │ │ ├── ProgressiveImage.tsx │ │ │ ├── StyledButton.tsx │ │ │ ├── StyledIcon.tsx │ │ │ ├── StyledImage.tsx │ │ │ ├── StyledIndicator.tsx │ │ │ ├── StyledInput.tsx │ │ │ ├── StyledInputForm.tsx │ │ │ ├── StyledList.tsx │ │ │ ├── StyledModalDropdown.tsx │ │ │ ├── StyledNoData.tsx │ │ │ ├── StyledOverlayLoading.tsx │ │ │ ├── StyledSectionList.tsx │ │ │ ├── StyledText.tsx │ │ │ ├── StyledTouchable.tsx │ │ │ ├── StyledWebView.tsx │ │ │ ├── index.ts │ │ │ ├── list-view-selected │ │ │ │ ├── StyledListViewSelected.tsx │ │ │ │ └── components │ │ │ │ │ └── ItemListViewSelected.tsx │ │ │ ├── modal │ │ │ │ ├── ModalizeCenterComponent.tsx │ │ │ │ └── ModalizeManager.tsx │ │ │ └── picker │ │ │ │ ├── StyledDateTimePicker.tsx │ │ │ │ └── StyledModalPicker.tsx │ │ └── common │ │ │ ├── CodePushProgressDialog.tsx │ │ │ └── StyledHeader.tsx │ ├── feature │ │ ├── account │ │ │ └── AccountScreen.tsx │ │ ├── authentication │ │ │ ├── ChangePassword.tsx │ │ │ ├── ForgotPwdScreen.tsx │ │ │ ├── LoginScreen.tsx │ │ │ ├── RegisterScreen.tsx │ │ │ └── SendOtp.tsx │ │ ├── chat │ │ │ └── ChatScreen.tsx │ │ ├── home │ │ │ ├── HomeDataScreen.tsx │ │ │ ├── HomeDetailScreen.tsx │ │ │ ├── HomeScreen.tsx │ │ │ ├── HomeUserListScreen.tsx │ │ │ └── components │ │ │ │ ├── ModalContent.tsx │ │ │ │ ├── ModalContent2.tsx │ │ │ │ └── UserCard.tsx │ │ ├── notification │ │ │ └── NotificationScreen.tsx │ │ └── setting │ │ │ └── SettingScreen.tsx │ ├── hooks │ │ ├── useApi.ts │ │ ├── useInput.ts │ │ ├── usePaging.ts │ │ └── usePagingTakeAfter.ts │ ├── navigation │ │ ├── NavigationService.ts │ │ ├── components │ │ │ └── StyledTabBar.tsx │ │ ├── config │ │ │ ├── options.ts │ │ │ ├── routes.ts │ │ │ └── transition.ts │ │ └── scene │ │ │ ├── AuthScenes.tsx │ │ │ ├── RootScenes.tsx │ │ │ └── TabScenes.tsx │ └── utilities │ │ ├── CommonInterface.ts │ │ ├── SocketProvider.tsx │ │ ├── authenticate │ │ ├── AuthenticateService.ts │ │ └── TokenProvider.ts │ │ ├── enum.ts │ │ ├── format.ts │ │ ├── helper.ts │ │ ├── i18next.ts │ │ ├── logger.ts │ │ ├── notification │ │ └── index.ts │ │ ├── permissions │ │ └── index.ts │ │ ├── react-i18next.d.ts │ │ ├── staticData.ts │ │ ├── types │ │ └── typing.d.ts │ │ ├── upload │ │ ├── ImagePicker.tsx │ │ └── ImageUploader.ts │ │ ├── validate.ts │ │ └── yupValidate.ts ├── tsconfig.json └── yarn.lock └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/README.md -------------------------------------------------------------------------------- /RUN_DEPLOY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/RUN_DEPLOY.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/package.json -------------------------------------------------------------------------------- /template.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template.config.js -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/.bundle/config -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- 1 | scripts/* -------------------------------------------------------------------------------- /template/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/.eslintrc.js -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.gitlab/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/.gitlab/merge_request_templates/Default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/.gitlab/merge_request_templates/Default.md -------------------------------------------------------------------------------- /template/.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /template/.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/.husky/commit-msg -------------------------------------------------------------------------------- /template/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/.husky/pre-commit -------------------------------------------------------------------------------- /template/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/.prettierrc.js -------------------------------------------------------------------------------- /template/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template/.yarn/releases/yarn-4.4.0.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/.yarn/releases/yarn-4.4.0.cjs -------------------------------------------------------------------------------- /template/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/.yarnrc.yml -------------------------------------------------------------------------------- /template/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/App.tsx -------------------------------------------------------------------------------- /template/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/Gemfile -------------------------------------------------------------------------------- /template/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/Gemfile.lock -------------------------------------------------------------------------------- /template/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/__tests__/App.test.tsx -------------------------------------------------------------------------------- /template/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/build.gradle -------------------------------------------------------------------------------- /template/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/debug.keystore -------------------------------------------------------------------------------- /template/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /template/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /template/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /template/android/app/src/main/java/com/demoapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/java/com/demoapp/MainActivity.kt -------------------------------------------------------------------------------- /template/android/app/src/main/java/com/demoapp/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/java/com/demoapp/MainApplication.kt -------------------------------------------------------------------------------- /template/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /template/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/build.gradle -------------------------------------------------------------------------------- /template/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/gradle.properties -------------------------------------------------------------------------------- /template/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /template/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /template/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/gradlew -------------------------------------------------------------------------------- /template/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/gradlew.bat -------------------------------------------------------------------------------- /template/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/android/settings.gradle -------------------------------------------------------------------------------- /template/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/app.json -------------------------------------------------------------------------------- /template/commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /template/defaultIcon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/defaultIcon.jpeg -------------------------------------------------------------------------------- /template/environment/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/environment/.env.development -------------------------------------------------------------------------------- /template/environment/.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/environment/.env.production -------------------------------------------------------------------------------- /template/environment/.env.staging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/environment/.env.staging -------------------------------------------------------------------------------- /template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/index.js -------------------------------------------------------------------------------- /template/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/.xcode.env -------------------------------------------------------------------------------- /template/ios/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/Config.xcconfig -------------------------------------------------------------------------------- /template/ios/DemoApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/ios/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp (dev).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp (dev).xcscheme -------------------------------------------------------------------------------- /template/ios/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp (production).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp (production).xcscheme -------------------------------------------------------------------------------- /template/ios/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp (staging).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp (staging).xcscheme -------------------------------------------------------------------------------- /template/ios/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp.xcscheme -------------------------------------------------------------------------------- /template/ios/DemoApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/ios/DemoApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /template/ios/DemoApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp/AppDelegate.h -------------------------------------------------------------------------------- /template/ios/DemoApp/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp/AppDelegate.mm -------------------------------------------------------------------------------- /template/ios/DemoApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /template/ios/DemoApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /template/ios/DemoApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp/Info.plist -------------------------------------------------------------------------------- /template/ios/DemoApp/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp/LaunchScreen.storyboard -------------------------------------------------------------------------------- /template/ios/DemoApp/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /template/ios/DemoApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoApp/main.m -------------------------------------------------------------------------------- /template/ios/DemoAppTests/DemoAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoAppTests/DemoAppTests.m -------------------------------------------------------------------------------- /template/ios/DemoAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/DemoAppTests/Info.plist -------------------------------------------------------------------------------- /template/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/Podfile -------------------------------------------------------------------------------- /template/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/ios/Podfile.lock -------------------------------------------------------------------------------- /template/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/jest.config.js -------------------------------------------------------------------------------- /template/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/metro.config.js -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/package.json -------------------------------------------------------------------------------- /template/patches/react-native-keyboard-aware-scroll-view+0.9.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/patches/react-native-keyboard-aware-scroll-view+0.9.5.patch -------------------------------------------------------------------------------- /template/patches/react-native-size-matters+0.4.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/patches/react-native-size-matters+0.4.2.patch -------------------------------------------------------------------------------- /template/reactotron.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/reactotron.config.js -------------------------------------------------------------------------------- /template/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/settings.json -------------------------------------------------------------------------------- /template/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/App.tsx -------------------------------------------------------------------------------- /template/src/api/interface/authenticate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/api/interface/authenticate.ts -------------------------------------------------------------------------------- /template/src/api/interface/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/api/interface/general.ts -------------------------------------------------------------------------------- /template/src/api/modules/api-app/authenticate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/api/modules/api-app/authenticate.ts -------------------------------------------------------------------------------- /template/src/api/modules/api-app/general.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/api/modules/api-app/general.ts -------------------------------------------------------------------------------- /template/src/api/modules/api-app/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/api/modules/api-app/notification.ts -------------------------------------------------------------------------------- /template/src/api/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/api/request.ts -------------------------------------------------------------------------------- /template/src/app-redux/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/app-redux/hooks.ts -------------------------------------------------------------------------------- /template/src/app-redux/sagas/resourceSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/app-redux/sagas/resourceSaga.ts -------------------------------------------------------------------------------- /template/src/app-redux/sagas/rootSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/app-redux/sagas/rootSaga.ts -------------------------------------------------------------------------------- /template/src/app-redux/sagas/userInfoSaga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/app-redux/sagas/userInfoSaga.ts -------------------------------------------------------------------------------- /template/src/app-redux/slices/initSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/app-redux/slices/initSlice.ts -------------------------------------------------------------------------------- /template/src/app-redux/slices/languageSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/app-redux/slices/languageSlice.ts -------------------------------------------------------------------------------- /template/src/app-redux/slices/resourceSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/app-redux/slices/resourceSlice.ts -------------------------------------------------------------------------------- /template/src/app-redux/slices/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/app-redux/slices/types.ts -------------------------------------------------------------------------------- /template/src/app-redux/slices/userInfoSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/app-redux/slices/userInfoSlice.ts -------------------------------------------------------------------------------- /template/src/app-redux/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/app-redux/store.ts -------------------------------------------------------------------------------- /template/src/assets/fonts/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/fonts/Montserrat-Light.ttf -------------------------------------------------------------------------------- /template/src/assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /template/src/assets/fonts/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/fonts/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /template/src/assets/icon/ic_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_account.png -------------------------------------------------------------------------------- /template/src/assets/icon/ic_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_back.png -------------------------------------------------------------------------------- /template/src/assets/icon/ic_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_calendar.png -------------------------------------------------------------------------------- /template/src/assets/icon/ic_check_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_check_radio.png -------------------------------------------------------------------------------- /template/src/assets/icon/ic_check_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_check_square.png -------------------------------------------------------------------------------- /template/src/assets/icon/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_home.png -------------------------------------------------------------------------------- /template/src/assets/icon/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_notification.png -------------------------------------------------------------------------------- /template/src/assets/icon/ic_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_select.png -------------------------------------------------------------------------------- /template/src/assets/icon/ic_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_setting.png -------------------------------------------------------------------------------- /template/src/assets/icon/ic_uncheck_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_uncheck_radio.png -------------------------------------------------------------------------------- /template/src/assets/icon/ic_uncheck_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/icon/ic_uncheck_square.png -------------------------------------------------------------------------------- /template/src/assets/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/images.ts -------------------------------------------------------------------------------- /template/src/assets/locates/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/locates/en.ts -------------------------------------------------------------------------------- /template/src/assets/locates/jp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/locates/jp.ts -------------------------------------------------------------------------------- /template/src/assets/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/metrics.ts -------------------------------------------------------------------------------- /template/src/assets/photo/img_default_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/photo/img_default_image.png -------------------------------------------------------------------------------- /template/src/assets/sizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/sizes.ts -------------------------------------------------------------------------------- /template/src/assets/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/assets/themes.ts -------------------------------------------------------------------------------- /template/src/components/base/AlertMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/AlertMessage.ts -------------------------------------------------------------------------------- /template/src/components/base/CheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/CheckBox.tsx -------------------------------------------------------------------------------- /template/src/components/base/ProgressiveImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/ProgressiveImage.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledButton.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledIcon.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledImage.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledIndicator.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledInput.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledInputForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledInputForm.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledList.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledModalDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledModalDropdown.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledNoData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledNoData.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledOverlayLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledOverlayLoading.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledSectionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledSectionList.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledText.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledTouchable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledTouchable.tsx -------------------------------------------------------------------------------- /template/src/components/base/StyledWebView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/StyledWebView.tsx -------------------------------------------------------------------------------- /template/src/components/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/index.ts -------------------------------------------------------------------------------- /template/src/components/base/list-view-selected/StyledListViewSelected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/list-view-selected/StyledListViewSelected.tsx -------------------------------------------------------------------------------- /template/src/components/base/list-view-selected/components/ItemListViewSelected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/list-view-selected/components/ItemListViewSelected.tsx -------------------------------------------------------------------------------- /template/src/components/base/modal/ModalizeCenterComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/modal/ModalizeCenterComponent.tsx -------------------------------------------------------------------------------- /template/src/components/base/modal/ModalizeManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/modal/ModalizeManager.tsx -------------------------------------------------------------------------------- /template/src/components/base/picker/StyledDateTimePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/picker/StyledDateTimePicker.tsx -------------------------------------------------------------------------------- /template/src/components/base/picker/StyledModalPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/base/picker/StyledModalPicker.tsx -------------------------------------------------------------------------------- /template/src/components/common/CodePushProgressDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/common/CodePushProgressDialog.tsx -------------------------------------------------------------------------------- /template/src/components/common/StyledHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/components/common/StyledHeader.tsx -------------------------------------------------------------------------------- /template/src/feature/account/AccountScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/account/AccountScreen.tsx -------------------------------------------------------------------------------- /template/src/feature/authentication/ChangePassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/authentication/ChangePassword.tsx -------------------------------------------------------------------------------- /template/src/feature/authentication/ForgotPwdScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/authentication/ForgotPwdScreen.tsx -------------------------------------------------------------------------------- /template/src/feature/authentication/LoginScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/authentication/LoginScreen.tsx -------------------------------------------------------------------------------- /template/src/feature/authentication/RegisterScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/authentication/RegisterScreen.tsx -------------------------------------------------------------------------------- /template/src/feature/authentication/SendOtp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/authentication/SendOtp.tsx -------------------------------------------------------------------------------- /template/src/feature/chat/ChatScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/chat/ChatScreen.tsx -------------------------------------------------------------------------------- /template/src/feature/home/HomeDataScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/home/HomeDataScreen.tsx -------------------------------------------------------------------------------- /template/src/feature/home/HomeDetailScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/home/HomeDetailScreen.tsx -------------------------------------------------------------------------------- /template/src/feature/home/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/home/HomeScreen.tsx -------------------------------------------------------------------------------- /template/src/feature/home/HomeUserListScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/home/HomeUserListScreen.tsx -------------------------------------------------------------------------------- /template/src/feature/home/components/ModalContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/home/components/ModalContent.tsx -------------------------------------------------------------------------------- /template/src/feature/home/components/ModalContent2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/home/components/ModalContent2.tsx -------------------------------------------------------------------------------- /template/src/feature/home/components/UserCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/home/components/UserCard.tsx -------------------------------------------------------------------------------- /template/src/feature/notification/NotificationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/notification/NotificationScreen.tsx -------------------------------------------------------------------------------- /template/src/feature/setting/SettingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/feature/setting/SettingScreen.tsx -------------------------------------------------------------------------------- /template/src/hooks/useApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/hooks/useApi.ts -------------------------------------------------------------------------------- /template/src/hooks/useInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/hooks/useInput.ts -------------------------------------------------------------------------------- /template/src/hooks/usePaging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/hooks/usePaging.ts -------------------------------------------------------------------------------- /template/src/hooks/usePagingTakeAfter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/hooks/usePagingTakeAfter.ts -------------------------------------------------------------------------------- /template/src/navigation/NavigationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/navigation/NavigationService.ts -------------------------------------------------------------------------------- /template/src/navigation/components/StyledTabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/navigation/components/StyledTabBar.tsx -------------------------------------------------------------------------------- /template/src/navigation/config/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/navigation/config/options.ts -------------------------------------------------------------------------------- /template/src/navigation/config/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/navigation/config/routes.ts -------------------------------------------------------------------------------- /template/src/navigation/config/transition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/navigation/config/transition.ts -------------------------------------------------------------------------------- /template/src/navigation/scene/AuthScenes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/navigation/scene/AuthScenes.tsx -------------------------------------------------------------------------------- /template/src/navigation/scene/RootScenes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/navigation/scene/RootScenes.tsx -------------------------------------------------------------------------------- /template/src/navigation/scene/TabScenes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/navigation/scene/TabScenes.tsx -------------------------------------------------------------------------------- /template/src/utilities/CommonInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/CommonInterface.ts -------------------------------------------------------------------------------- /template/src/utilities/SocketProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/SocketProvider.tsx -------------------------------------------------------------------------------- /template/src/utilities/authenticate/AuthenticateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/authenticate/AuthenticateService.ts -------------------------------------------------------------------------------- /template/src/utilities/authenticate/TokenProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/authenticate/TokenProvider.ts -------------------------------------------------------------------------------- /template/src/utilities/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/enum.ts -------------------------------------------------------------------------------- /template/src/utilities/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/format.ts -------------------------------------------------------------------------------- /template/src/utilities/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/helper.ts -------------------------------------------------------------------------------- /template/src/utilities/i18next.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/i18next.ts -------------------------------------------------------------------------------- /template/src/utilities/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/logger.ts -------------------------------------------------------------------------------- /template/src/utilities/notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/notification/index.ts -------------------------------------------------------------------------------- /template/src/utilities/permissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/permissions/index.ts -------------------------------------------------------------------------------- /template/src/utilities/react-i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/react-i18next.d.ts -------------------------------------------------------------------------------- /template/src/utilities/staticData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/staticData.ts -------------------------------------------------------------------------------- /template/src/utilities/types/typing.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/types/typing.d.ts -------------------------------------------------------------------------------- /template/src/utilities/upload/ImagePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/upload/ImagePicker.tsx -------------------------------------------------------------------------------- /template/src/utilities/upload/ImageUploader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/upload/ImageUploader.ts -------------------------------------------------------------------------------- /template/src/utilities/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/validate.ts -------------------------------------------------------------------------------- /template/src/utilities/yupValidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/src/utilities/yupValidate.ts -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/template/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amela-technology/react-native-templet-v1/HEAD/yarn.lock --------------------------------------------------------------------------------