├── .DS_Store ├── docs ├── .DS_Store └── assets │ ├── .DS_Store │ └── images │ ├── AppcenterSecret.png │ ├── CodePushKey.png │ ├── DeploymentKeys.png │ ├── EditScheme.png │ ├── PublicKey.png │ ├── Staging.png │ └── change_environment.png ├── package.json ├── readme.md ├── template.config.js ├── template ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github │ ├── pull_request_template.md │ └── workflows │ │ ├── android.yml │ │ ├── ios.yml │ │ └── linting.yml ├── .gitignore ├── .husky │ └── pre-commit ├── .prettierrc.js ├── .vscode │ └── settings.json ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── Providers.tsx ├── __tests__ │ └── App-test.tsx ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── appcenter-config.json │ │ │ ├── java │ │ │ └── com │ │ │ │ └── myapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── 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 │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── codePushPublicKey.pem ├── index.js ├── ios │ ├── .xcode.env │ ├── MyApp.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── MyApp.xcscheme │ │ │ ├── MyAppDev.xcscheme │ │ │ ├── MyAppStage.xcscheme │ │ │ └── MyAppUAT.xcscheme │ ├── MyApp.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── MyApp │ │ ├── AppCenter-Config.plist │ │ ├── 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.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ ├── MyAppDev-Info.plist │ ├── MyAppStage-Info.plist │ ├── MyAppTests │ │ ├── Info.plist │ │ └── MyAppTests.m │ ├── MyAppUAT-Info.plist │ ├── Podfile │ └── Podfile.lock ├── jest.config.js ├── lint-staged.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── src │ ├── api │ │ ├── endpoints.ts │ │ └── services.ts │ ├── assets │ │ ├── animations │ │ │ └── 404.json │ │ └── images │ │ │ └── reactnative.png │ ├── components │ │ ├── base │ │ │ ├── Button │ │ │ │ ├── index.style.ts │ │ │ │ └── index.tsx │ │ │ ├── Divider │ │ │ │ ├── index.styles.ts │ │ │ │ └── index.tsx │ │ │ ├── IconButton │ │ │ │ ├── index.styles.ts │ │ │ │ └── index.tsx │ │ │ ├── Image │ │ │ │ └── index.ts │ │ │ ├── Text │ │ │ │ ├── index.styles.ts │ │ │ │ └── index.tsx │ │ │ └── TextInput │ │ │ │ ├── index.styles.ts │ │ │ │ └── index.tsx │ │ ├── common │ │ │ ├── Container │ │ │ │ ├── index.styles.ts │ │ │ │ └── index.tsx │ │ │ └── LoadingFullScreen │ │ │ │ ├── index.styles.ts │ │ │ │ └── index.tsx │ │ └── svgs │ │ │ └── ChartIcon.tsx │ ├── configs │ │ ├── axios.ts │ │ ├── environments.ts │ │ ├── https.ts │ │ ├── index.ts │ │ ├── showMessage.ts │ │ ├── storage.ts │ │ └── toast.ts │ ├── hooks │ │ ├── useDispatch.ts │ │ ├── useSelector.ts │ │ └── useTheme.ts │ ├── navigation │ │ └── index.tsx │ ├── redux │ │ ├── index.ts │ │ ├── theme │ │ │ └── index.ts │ │ └── user │ │ │ └── index.ts │ ├── screens │ │ ├── Error │ │ │ ├── index.styles.ts │ │ │ └── index.tsx │ │ ├── Home │ │ │ ├── index.styles.ts │ │ │ └── index.tsx │ │ └── index.ts │ ├── translations │ │ ├── index.ts │ │ └── resources │ │ │ ├── ar.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ └── index.ts │ └── utils │ │ ├── constants │ │ ├── index.ts │ │ ├── navigation.constants.ts │ │ ├── navigationList.constants.ts │ │ ├── theme.constants.ts │ │ └── translation.constants.ts │ │ ├── enums │ │ ├── errors.enums.ts │ │ └── reducers.enums.ts │ │ ├── helpers │ │ ├── index.ts │ │ ├── responsive.helpers.ts │ │ └── transalation.helpers.ts │ │ └── types │ │ ├── api.types.ts │ │ ├── index.ts │ │ ├── navigation.types.ts │ │ └── redux │ │ ├── theme.type.ts │ │ └── user.type.ts ├── tsconfig.json └── yarn.lock └── yarn.lock /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/.DS_Store -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/docs/assets/.DS_Store -------------------------------------------------------------------------------- /docs/assets/images/AppcenterSecret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/docs/assets/images/AppcenterSecret.png -------------------------------------------------------------------------------- /docs/assets/images/CodePushKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/docs/assets/images/CodePushKey.png -------------------------------------------------------------------------------- /docs/assets/images/DeploymentKeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/docs/assets/images/DeploymentKeys.png -------------------------------------------------------------------------------- /docs/assets/images/EditScheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/docs/assets/images/EditScheme.png -------------------------------------------------------------------------------- /docs/assets/images/PublicKey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/docs/assets/images/PublicKey.png -------------------------------------------------------------------------------- /docs/assets/images/Staging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/docs/assets/images/Staging.png -------------------------------------------------------------------------------- /docs/assets/images/change_environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/docs/assets/images/change_environment.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/readme.md -------------------------------------------------------------------------------- /template.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template.config.js -------------------------------------------------------------------------------- /template/.eslintignore: -------------------------------------------------------------------------------- 1 | *.js 2 | __tests__ -------------------------------------------------------------------------------- /template/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/.eslintrc.json -------------------------------------------------------------------------------- /template/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/.gitattributes -------------------------------------------------------------------------------- /template/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/.github/pull_request_template.md -------------------------------------------------------------------------------- /template/.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/.github/workflows/android.yml -------------------------------------------------------------------------------- /template/.github/workflows/ios.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/.github/workflows/ios.yml -------------------------------------------------------------------------------- /template/.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/.github/workflows/linting.yml -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/.husky/pre-commit -------------------------------------------------------------------------------- /template/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/.prettierrc.js -------------------------------------------------------------------------------- /template/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/.vscode/settings.json -------------------------------------------------------------------------------- /template/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /template/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/App.tsx -------------------------------------------------------------------------------- /template/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/Gemfile -------------------------------------------------------------------------------- /template/Providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/Providers.tsx -------------------------------------------------------------------------------- /template/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/__tests__/App-test.tsx -------------------------------------------------------------------------------- /template/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/build.gradle -------------------------------------------------------------------------------- /template/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/debug.keystore -------------------------------------------------------------------------------- /template/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /template/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /template/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /template/android/app/src/main/assets/appcenter-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/assets/appcenter-config.json -------------------------------------------------------------------------------- /template/android/app/src/main/java/com/myapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/java/com/myapp/MainActivity.kt -------------------------------------------------------------------------------- /template/android/app/src/main/java/com/myapp/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/java/com/myapp/MainApplication.kt -------------------------------------------------------------------------------- /template/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-hdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/mipmap-hdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/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/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-mdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/mipmap-mdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/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/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/mipmap-xhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/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/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/mipmap-xxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/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/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxxhdpi/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/mipmap-xxxhdpi/bootsplash_logo.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/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/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /template/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /template/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/build.gradle -------------------------------------------------------------------------------- /template/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/gradle.properties -------------------------------------------------------------------------------- /template/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /template/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /template/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/gradlew -------------------------------------------------------------------------------- /template/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/gradlew.bat -------------------------------------------------------------------------------- /template/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/android/settings.gradle -------------------------------------------------------------------------------- /template/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/app.json -------------------------------------------------------------------------------- /template/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/babel.config.js -------------------------------------------------------------------------------- /template/codePushPublicKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/codePushPublicKey.pem -------------------------------------------------------------------------------- /template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/index.js -------------------------------------------------------------------------------- /template/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/.xcode.env -------------------------------------------------------------------------------- /template/ios/MyApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /template/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyApp.xcscheme -------------------------------------------------------------------------------- /template/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyAppDev.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyAppDev.xcscheme -------------------------------------------------------------------------------- /template/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyAppStage.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyAppStage.xcscheme -------------------------------------------------------------------------------- /template/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyAppUAT.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp.xcodeproj/xcshareddata/xcschemes/MyAppUAT.xcscheme -------------------------------------------------------------------------------- /template/ios/MyApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /template/ios/MyApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /template/ios/MyApp.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /template/ios/MyApp/AppCenter-Config.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/AppCenter-Config.plist -------------------------------------------------------------------------------- /template/ios/MyApp/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/AppDelegate.h -------------------------------------------------------------------------------- /template/ios/MyApp/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/AppDelegate.mm -------------------------------------------------------------------------------- /template/ios/MyApp/BootSplash.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/BootSplash.storyboard -------------------------------------------------------------------------------- /template/ios/MyApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /template/ios/MyApp/Images.xcassets/BootSplashLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/Images.xcassets/BootSplashLogo.imageset/Contents.json -------------------------------------------------------------------------------- /template/ios/MyApp/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo.png -------------------------------------------------------------------------------- /template/ios/MyApp/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@2x.png -------------------------------------------------------------------------------- /template/ios/MyApp/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/Images.xcassets/BootSplashLogo.imageset/bootsplash_logo@3x.png -------------------------------------------------------------------------------- /template/ios/MyApp/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /template/ios/MyApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/Info.plist -------------------------------------------------------------------------------- /template/ios/MyApp/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/LaunchScreen.storyboard -------------------------------------------------------------------------------- /template/ios/MyApp/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /template/ios/MyApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyApp/main.m -------------------------------------------------------------------------------- /template/ios/MyAppDev-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyAppDev-Info.plist -------------------------------------------------------------------------------- /template/ios/MyAppStage-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyAppStage-Info.plist -------------------------------------------------------------------------------- /template/ios/MyAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyAppTests/Info.plist -------------------------------------------------------------------------------- /template/ios/MyAppTests/MyAppTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyAppTests/MyAppTests.m -------------------------------------------------------------------------------- /template/ios/MyAppUAT-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/MyAppUAT-Info.plist -------------------------------------------------------------------------------- /template/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/Podfile -------------------------------------------------------------------------------- /template/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/ios/Podfile.lock -------------------------------------------------------------------------------- /template/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /template/lint-staged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/lint-staged.js -------------------------------------------------------------------------------- /template/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/metro.config.js -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/package.json -------------------------------------------------------------------------------- /template/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/react-native.config.js -------------------------------------------------------------------------------- /template/src/api/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/api/endpoints.ts -------------------------------------------------------------------------------- /template/src/api/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/api/services.ts -------------------------------------------------------------------------------- /template/src/assets/animations/404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/assets/animations/404.json -------------------------------------------------------------------------------- /template/src/assets/images/reactnative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/assets/images/reactnative.png -------------------------------------------------------------------------------- /template/src/components/base/Button/index.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/Button/index.style.ts -------------------------------------------------------------------------------- /template/src/components/base/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/Button/index.tsx -------------------------------------------------------------------------------- /template/src/components/base/Divider/index.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/Divider/index.styles.ts -------------------------------------------------------------------------------- /template/src/components/base/Divider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/Divider/index.tsx -------------------------------------------------------------------------------- /template/src/components/base/IconButton/index.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/IconButton/index.styles.ts -------------------------------------------------------------------------------- /template/src/components/base/IconButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/IconButton/index.tsx -------------------------------------------------------------------------------- /template/src/components/base/Image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/Image/index.ts -------------------------------------------------------------------------------- /template/src/components/base/Text/index.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/Text/index.styles.ts -------------------------------------------------------------------------------- /template/src/components/base/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/Text/index.tsx -------------------------------------------------------------------------------- /template/src/components/base/TextInput/index.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/TextInput/index.styles.ts -------------------------------------------------------------------------------- /template/src/components/base/TextInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/base/TextInput/index.tsx -------------------------------------------------------------------------------- /template/src/components/common/Container/index.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/common/Container/index.styles.ts -------------------------------------------------------------------------------- /template/src/components/common/Container/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/common/Container/index.tsx -------------------------------------------------------------------------------- /template/src/components/common/LoadingFullScreen/index.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/common/LoadingFullScreen/index.styles.ts -------------------------------------------------------------------------------- /template/src/components/common/LoadingFullScreen/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/common/LoadingFullScreen/index.tsx -------------------------------------------------------------------------------- /template/src/components/svgs/ChartIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/components/svgs/ChartIcon.tsx -------------------------------------------------------------------------------- /template/src/configs/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/configs/axios.ts -------------------------------------------------------------------------------- /template/src/configs/environments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/configs/environments.ts -------------------------------------------------------------------------------- /template/src/configs/https.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/configs/https.ts -------------------------------------------------------------------------------- /template/src/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/configs/index.ts -------------------------------------------------------------------------------- /template/src/configs/showMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/configs/showMessage.ts -------------------------------------------------------------------------------- /template/src/configs/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/configs/storage.ts -------------------------------------------------------------------------------- /template/src/configs/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/configs/toast.ts -------------------------------------------------------------------------------- /template/src/hooks/useDispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/hooks/useDispatch.ts -------------------------------------------------------------------------------- /template/src/hooks/useSelector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/hooks/useSelector.ts -------------------------------------------------------------------------------- /template/src/hooks/useTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/hooks/useTheme.ts -------------------------------------------------------------------------------- /template/src/navigation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/navigation/index.tsx -------------------------------------------------------------------------------- /template/src/redux/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/redux/index.ts -------------------------------------------------------------------------------- /template/src/redux/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/redux/theme/index.ts -------------------------------------------------------------------------------- /template/src/redux/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/redux/user/index.ts -------------------------------------------------------------------------------- /template/src/screens/Error/index.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/screens/Error/index.styles.ts -------------------------------------------------------------------------------- /template/src/screens/Error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/screens/Error/index.tsx -------------------------------------------------------------------------------- /template/src/screens/Home/index.styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/screens/Home/index.styles.ts -------------------------------------------------------------------------------- /template/src/screens/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/screens/Home/index.tsx -------------------------------------------------------------------------------- /template/src/screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/screens/index.ts -------------------------------------------------------------------------------- /template/src/translations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/translations/index.ts -------------------------------------------------------------------------------- /template/src/translations/resources/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/translations/resources/ar.json -------------------------------------------------------------------------------- /template/src/translations/resources/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/translations/resources/en.json -------------------------------------------------------------------------------- /template/src/translations/resources/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/translations/resources/es.json -------------------------------------------------------------------------------- /template/src/translations/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/translations/resources/index.ts -------------------------------------------------------------------------------- /template/src/utils/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/constants/index.ts -------------------------------------------------------------------------------- /template/src/utils/constants/navigation.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/constants/navigation.constants.ts -------------------------------------------------------------------------------- /template/src/utils/constants/navigationList.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/constants/navigationList.constants.ts -------------------------------------------------------------------------------- /template/src/utils/constants/theme.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/constants/theme.constants.ts -------------------------------------------------------------------------------- /template/src/utils/constants/translation.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/constants/translation.constants.ts -------------------------------------------------------------------------------- /template/src/utils/enums/errors.enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/enums/errors.enums.ts -------------------------------------------------------------------------------- /template/src/utils/enums/reducers.enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/enums/reducers.enums.ts -------------------------------------------------------------------------------- /template/src/utils/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/helpers/index.ts -------------------------------------------------------------------------------- /template/src/utils/helpers/responsive.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/helpers/responsive.helpers.ts -------------------------------------------------------------------------------- /template/src/utils/helpers/transalation.helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/helpers/transalation.helpers.ts -------------------------------------------------------------------------------- /template/src/utils/types/api.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/types/api.types.ts -------------------------------------------------------------------------------- /template/src/utils/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/types/index.ts -------------------------------------------------------------------------------- /template/src/utils/types/navigation.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/types/navigation.types.ts -------------------------------------------------------------------------------- /template/src/utils/types/redux/theme.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/types/redux/theme.type.ts -------------------------------------------------------------------------------- /template/src/utils/types/redux/user.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/src/utils/types/redux/user.type.ts -------------------------------------------------------------------------------- /template/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/tsconfig.json -------------------------------------------------------------------------------- /template/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/template/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SMKH-PRO/ReactNative_CodePush_Template/HEAD/yarn.lock --------------------------------------------------------------------------------