├── .buckconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .ruby-version ├── .watchmanconfig ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── __tests__ └── App-test.tsx ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── hoangvvo │ │ │ └── simpleshop │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── hoangvvo │ │ │ └── simpleshop │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── 1024.png │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-anydpi-v26 │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi-v26 │ │ ├── ic_foreground.png │ │ └── ic_launcher.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_adaptive_back.png │ │ ├── ic_launcher_adaptive_fore.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-ldpi-v26 │ │ ├── ic_foreground.png │ │ └── ic_launcher.xml │ │ ├── mipmap-ldpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi-v26 │ │ ├── ic_foreground.png │ │ └── ic_launcher.xml │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_adaptive_back.png │ │ ├── ic_launcher_adaptive_fore.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi-v26 │ │ ├── ic_foreground.png │ │ └── ic_launcher.xml │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_adaptive_back.png │ │ ├── ic_launcher_adaptive_fore.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi-v26 │ │ ├── ic_foreground.png │ │ └── ic_launcher.xml │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_adaptive_back.png │ │ ├── ic_launcher_adaptive_fore.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi-v26 │ │ ├── ic_foreground.png │ │ └── ic_launcher.xml │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_adaptive_back.png │ │ ├── ic_launcher_adaptive_fore.png │ │ └── ic_launcher_round.png │ │ ├── play_store_512.png │ │ └── values │ │ ├── colors-icon.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 ├── index.js ├── ios ├── Podfile ├── SimpleShop.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── SimpleShop.xcscheme ├── SimpleShop │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 100.png │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 128.png │ │ │ ├── 144.png │ │ │ ├── 152.png │ │ │ ├── 16.png │ │ │ ├── 167.png │ │ │ ├── 172.png │ │ │ ├── 180.png │ │ │ ├── 196.png │ │ │ ├── 20.png │ │ │ ├── 216.png │ │ │ ├── 256.png │ │ │ ├── 29.png │ │ │ ├── 32.png │ │ │ ├── 40.png │ │ │ ├── 48.png │ │ │ ├── 50.png │ │ │ ├── 512.png │ │ │ ├── 55.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 64.png │ │ │ ├── 72.png │ │ │ ├── 76.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ ├── 88.png │ │ │ ├── Contents.json │ │ │ ├── icon-1024@1x.png │ │ │ ├── icon-20@1x.png │ │ │ ├── icon-20@2x.png │ │ │ ├── icon-20@3x.png │ │ │ ├── icon-29@1x.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40@1x.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50@1x.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57@1x.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72@1x.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76@1x.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── SimpleShopTests │ ├── Info.plist │ └── SimpleShopTests.m ├── metro.config.js ├── package.json ├── patches └── react-native-share+7.3.6.patch ├── react-native.config.js ├── resources ├── logo.png ├── screenshots │ ├── dashboard.jpg │ ├── dashboard_profit.jpg │ ├── order_action.jpg │ ├── order_edit.jpg │ ├── order_list.jpg │ ├── order_products.jpg │ ├── product_edit.jpg │ └── product_list.jpg └── splash.png ├── src ├── App.tsx ├── InitComponent.tsx ├── components │ ├── HelperText │ │ ├── FormHelperText.tsx │ │ └── index.ts │ ├── Loading │ │ ├── LoadingScreen.tsx │ │ └── index.ts │ ├── NavigationBar │ │ └── index.tsx │ └── Toast │ │ ├── Toaster.tsx │ │ ├── index.ts │ │ ├── pubsub.ts │ │ ├── toast.ts │ │ └── types.ts ├── db │ ├── SQLiteProvider.tsx │ ├── index.ts │ ├── migrations │ │ ├── customer.sql.ts │ │ └── init.sql.ts │ └── sqlite.ts ├── i18n.ts ├── locales │ ├── constants.ts │ ├── en.json │ └── vi.json ├── react-navigation.d.ts ├── screens │ ├── CustomerEditor │ │ ├── components │ │ │ ├── CustomerDelete.tsx │ │ │ └── CustomerOrders.tsx │ │ └── index.tsx │ ├── Customers │ │ └── index.tsx │ ├── Dashboard │ │ ├── components │ │ │ ├── DashboardBlocks.tsx │ │ │ ├── DashboardRevenue.tsx │ │ │ └── StatBlock.tsx │ │ └── index.tsx │ ├── DashboardStats │ │ ├── StatsInventoryTab.tsx │ │ ├── StatsProfitTab.tsx │ │ ├── StatsRevenueTab.tsx │ │ ├── components │ │ │ ├── MoneyChartView.tsx │ │ │ ├── NegativeStockWarn.tsx │ │ │ └── ProductRankList.tsx │ │ ├── index.tsx │ │ └── shared.tsx │ ├── Debug │ │ └── index.tsx │ ├── OrderEditor │ │ ├── components │ │ │ ├── OrderDelete.tsx │ │ │ ├── OrderProductEditor.tsx │ │ │ └── OrdersDetailEditor.tsx │ │ └── index.tsx │ ├── Orders │ │ ├── components │ │ │ └── OrderItem.tsx │ │ └── index.tsx │ ├── ProductEditor │ │ ├── components │ │ │ └── ProductDelete.tsx │ │ └── index.tsx │ ├── Products │ │ └── index.tsx │ ├── Settings │ │ └── index.tsx │ └── types.ts ├── services │ ├── calculate │ │ ├── api.ts │ │ ├── index.ts │ │ ├── service.ts │ │ └── types.ts │ ├── customer │ │ ├── api.ts │ │ ├── index.ts │ │ ├── queries.sql.ts │ │ ├── service.ts │ │ └── types.ts │ ├── order │ │ ├── api.ts │ │ ├── index.ts │ │ ├── queries.sql.ts │ │ ├── service.ts │ │ └── types.ts │ └── product │ │ ├── api.ts │ │ ├── index.ts │ │ ├── queries.sql.ts │ │ ├── service.ts │ │ └── types.ts ├── styles │ ├── Colors.ts │ ├── colorScheme.ts │ └── screens.ts └── utils │ ├── currency.ts │ ├── date.ts │ ├── number.ts │ └── settings.ts └── tsconfig.json /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | ios 2 | android 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.4 -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/hoangvvo/simpleshop/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/debug/java/com/hoangvvo/simpleshop/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/hoangvvo/simpleshop/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/java/com/hoangvvo/simpleshop/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/hoangvvo/simpleshop/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/java/com/hoangvvo/simpleshop/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/1024.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi-v26/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-hdpi-v26/ic_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-hdpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi-v26/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-ldpi-v26/ic_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-ldpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi-v26/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-mdpi-v26/ic_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-mdpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi-v26/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xhdpi-v26/ic_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xhdpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi-v26/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxhdpi-v26/ic_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxhdpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi-v26/ic_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxxhdpi-v26/ic_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxxhdpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/play_store_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/play_store_512.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors-icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/values/colors-icon.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/SimpleShop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/SimpleShop.xcodeproj/xcshareddata/xcschemes/SimpleShop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop.xcodeproj/xcshareddata/xcschemes/SimpleShop.xcscheme -------------------------------------------------------------------------------- /ios/SimpleShop/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/AppDelegate.h -------------------------------------------------------------------------------- /ios/SimpleShop/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/AppDelegate.m -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-1024@1x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-20@1x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-20@2x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-20@3x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-29@1x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-40@1x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-50@1x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-57@1x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-72@1x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-76@1x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /ios/SimpleShop/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/SimpleShop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/Info.plist -------------------------------------------------------------------------------- /ios/SimpleShop/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/SimpleShop/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShop/main.m -------------------------------------------------------------------------------- /ios/SimpleShopTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShopTests/Info.plist -------------------------------------------------------------------------------- /ios/SimpleShopTests/SimpleShopTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/ios/SimpleShopTests/SimpleShopTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/package.json -------------------------------------------------------------------------------- /patches/react-native-share+7.3.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/patches/react-native-share+7.3.6.patch -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | assets: ["./src/fonts"], 3 | }; 4 | -------------------------------------------------------------------------------- /resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/resources/logo.png -------------------------------------------------------------------------------- /resources/screenshots/dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/resources/screenshots/dashboard.jpg -------------------------------------------------------------------------------- /resources/screenshots/dashboard_profit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/resources/screenshots/dashboard_profit.jpg -------------------------------------------------------------------------------- /resources/screenshots/order_action.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/resources/screenshots/order_action.jpg -------------------------------------------------------------------------------- /resources/screenshots/order_edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/resources/screenshots/order_edit.jpg -------------------------------------------------------------------------------- /resources/screenshots/order_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/resources/screenshots/order_list.jpg -------------------------------------------------------------------------------- /resources/screenshots/order_products.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/resources/screenshots/order_products.jpg -------------------------------------------------------------------------------- /resources/screenshots/product_edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/resources/screenshots/product_edit.jpg -------------------------------------------------------------------------------- /resources/screenshots/product_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/resources/screenshots/product_list.jpg -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/InitComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/InitComponent.tsx -------------------------------------------------------------------------------- /src/components/HelperText/FormHelperText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/components/HelperText/FormHelperText.tsx -------------------------------------------------------------------------------- /src/components/HelperText/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/components/HelperText/index.ts -------------------------------------------------------------------------------- /src/components/Loading/LoadingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/components/Loading/LoadingScreen.tsx -------------------------------------------------------------------------------- /src/components/Loading/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/components/Loading/index.ts -------------------------------------------------------------------------------- /src/components/NavigationBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/components/NavigationBar/index.tsx -------------------------------------------------------------------------------- /src/components/Toast/Toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/components/Toast/Toaster.tsx -------------------------------------------------------------------------------- /src/components/Toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/components/Toast/index.ts -------------------------------------------------------------------------------- /src/components/Toast/pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/components/Toast/pubsub.ts -------------------------------------------------------------------------------- /src/components/Toast/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/components/Toast/toast.ts -------------------------------------------------------------------------------- /src/components/Toast/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/components/Toast/types.ts -------------------------------------------------------------------------------- /src/db/SQLiteProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/db/SQLiteProvider.tsx -------------------------------------------------------------------------------- /src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/db/index.ts -------------------------------------------------------------------------------- /src/db/migrations/customer.sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/db/migrations/customer.sql.ts -------------------------------------------------------------------------------- /src/db/migrations/init.sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/db/migrations/init.sql.ts -------------------------------------------------------------------------------- /src/db/sqlite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/db/sqlite.ts -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/locales/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/locales/constants.ts -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/locales/vi.json -------------------------------------------------------------------------------- /src/react-navigation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/react-navigation.d.ts -------------------------------------------------------------------------------- /src/screens/CustomerEditor/components/CustomerDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/CustomerEditor/components/CustomerDelete.tsx -------------------------------------------------------------------------------- /src/screens/CustomerEditor/components/CustomerOrders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/CustomerEditor/components/CustomerOrders.tsx -------------------------------------------------------------------------------- /src/screens/CustomerEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/CustomerEditor/index.tsx -------------------------------------------------------------------------------- /src/screens/Customers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/Customers/index.tsx -------------------------------------------------------------------------------- /src/screens/Dashboard/components/DashboardBlocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/Dashboard/components/DashboardBlocks.tsx -------------------------------------------------------------------------------- /src/screens/Dashboard/components/DashboardRevenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/Dashboard/components/DashboardRevenue.tsx -------------------------------------------------------------------------------- /src/screens/Dashboard/components/StatBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/Dashboard/components/StatBlock.tsx -------------------------------------------------------------------------------- /src/screens/Dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/Dashboard/index.tsx -------------------------------------------------------------------------------- /src/screens/DashboardStats/StatsInventoryTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/DashboardStats/StatsInventoryTab.tsx -------------------------------------------------------------------------------- /src/screens/DashboardStats/StatsProfitTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/DashboardStats/StatsProfitTab.tsx -------------------------------------------------------------------------------- /src/screens/DashboardStats/StatsRevenueTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/DashboardStats/StatsRevenueTab.tsx -------------------------------------------------------------------------------- /src/screens/DashboardStats/components/MoneyChartView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/DashboardStats/components/MoneyChartView.tsx -------------------------------------------------------------------------------- /src/screens/DashboardStats/components/NegativeStockWarn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/DashboardStats/components/NegativeStockWarn.tsx -------------------------------------------------------------------------------- /src/screens/DashboardStats/components/ProductRankList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/DashboardStats/components/ProductRankList.tsx -------------------------------------------------------------------------------- /src/screens/DashboardStats/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/DashboardStats/index.tsx -------------------------------------------------------------------------------- /src/screens/DashboardStats/shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/DashboardStats/shared.tsx -------------------------------------------------------------------------------- /src/screens/Debug/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/Debug/index.tsx -------------------------------------------------------------------------------- /src/screens/OrderEditor/components/OrderDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/OrderEditor/components/OrderDelete.tsx -------------------------------------------------------------------------------- /src/screens/OrderEditor/components/OrderProductEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/OrderEditor/components/OrderProductEditor.tsx -------------------------------------------------------------------------------- /src/screens/OrderEditor/components/OrdersDetailEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/OrderEditor/components/OrdersDetailEditor.tsx -------------------------------------------------------------------------------- /src/screens/OrderEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/OrderEditor/index.tsx -------------------------------------------------------------------------------- /src/screens/Orders/components/OrderItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/Orders/components/OrderItem.tsx -------------------------------------------------------------------------------- /src/screens/Orders/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/Orders/index.tsx -------------------------------------------------------------------------------- /src/screens/ProductEditor/components/ProductDelete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/ProductEditor/components/ProductDelete.tsx -------------------------------------------------------------------------------- /src/screens/ProductEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/ProductEditor/index.tsx -------------------------------------------------------------------------------- /src/screens/Products/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/Products/index.tsx -------------------------------------------------------------------------------- /src/screens/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/Settings/index.tsx -------------------------------------------------------------------------------- /src/screens/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/screens/types.ts -------------------------------------------------------------------------------- /src/services/calculate/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/calculate/api.ts -------------------------------------------------------------------------------- /src/services/calculate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/calculate/index.ts -------------------------------------------------------------------------------- /src/services/calculate/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/calculate/service.ts -------------------------------------------------------------------------------- /src/services/calculate/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/calculate/types.ts -------------------------------------------------------------------------------- /src/services/customer/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/customer/api.ts -------------------------------------------------------------------------------- /src/services/customer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/customer/index.ts -------------------------------------------------------------------------------- /src/services/customer/queries.sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/customer/queries.sql.ts -------------------------------------------------------------------------------- /src/services/customer/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/customer/service.ts -------------------------------------------------------------------------------- /src/services/customer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/customer/types.ts -------------------------------------------------------------------------------- /src/services/order/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/order/api.ts -------------------------------------------------------------------------------- /src/services/order/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/order/index.ts -------------------------------------------------------------------------------- /src/services/order/queries.sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/order/queries.sql.ts -------------------------------------------------------------------------------- /src/services/order/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/order/service.ts -------------------------------------------------------------------------------- /src/services/order/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/order/types.ts -------------------------------------------------------------------------------- /src/services/product/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/product/api.ts -------------------------------------------------------------------------------- /src/services/product/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/product/index.ts -------------------------------------------------------------------------------- /src/services/product/queries.sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/product/queries.sql.ts -------------------------------------------------------------------------------- /src/services/product/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/product/service.ts -------------------------------------------------------------------------------- /src/services/product/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/services/product/types.ts -------------------------------------------------------------------------------- /src/styles/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/styles/Colors.ts -------------------------------------------------------------------------------- /src/styles/colorScheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/styles/colorScheme.ts -------------------------------------------------------------------------------- /src/styles/screens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/styles/screens.ts -------------------------------------------------------------------------------- /src/utils/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/utils/currency.ts -------------------------------------------------------------------------------- /src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/utils/date.ts -------------------------------------------------------------------------------- /src/utils/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/utils/number.ts -------------------------------------------------------------------------------- /src/utils/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/src/utils/settings.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoangvvo/SimpleShop/HEAD/tsconfig.json --------------------------------------------------------------------------------