├── .bundle └── config ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── Gemfile ├── README.md ├── __tests__ └── App.test.tsx ├── android ├── app │ ├── build.gradle │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── Poppins-Black.ttf │ │ │ ├── Poppins-Bold.ttf │ │ │ ├── Poppins-Light.ttf │ │ │ ├── Poppins-Medium.ttf │ │ │ ├── Poppins-Regular.ttf │ │ │ ├── Poppins-SemiBold.ttf │ │ │ ├── Poppins-Thin.ttf │ │ │ └── feather1s.ttf │ │ ├── java │ │ └── com │ │ │ └── frontendsource │ │ │ └── grocerystore │ │ │ ├── MainActivity.kt │ │ │ └── MainApplication.kt │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── link-assets-manifest.json └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── .xcode.env ├── GroceryStore.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── GroceryStore.xcscheme ├── GroceryStore │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── Podfile ├── grocerystoreTests │ ├── Info.plist │ └── grocerystoreTests.m └── link-assets-manifest.json ├── jest.config.js ├── metro.config.js ├── package.json ├── react-native.config.js ├── src ├── assets │ ├── fonts │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-Thin.ttf │ │ └── feather1s.ttf │ └── images │ │ ├── emptycart.png │ │ ├── emptyproduct.png │ │ ├── home.png │ │ ├── image.png │ │ ├── logo.png │ │ ├── mail_box_img.png │ │ ├── offer1.jpg │ │ ├── offer2.jpg │ │ ├── original-logo.png │ │ ├── slide1.png │ │ ├── slide2.png │ │ ├── slide3.png │ │ ├── thankyou.png │ │ ├── thumb1.png │ │ ├── thumb2.png │ │ ├── thumb3.png │ │ └── user.png ├── axios │ ├── API.js │ └── ServerRequest.js ├── components │ ├── AppIntro │ │ ├── AppIntro.js │ │ └── components │ │ │ ├── DoneButton.android.js │ │ │ ├── DoneButton.ios.js │ │ │ ├── Dots.js │ │ │ ├── SkipButton.android.js │ │ │ └── SkipButton.ios.js │ ├── AppStatusBar.js │ ├── BadgeIcon.js │ ├── BannerSlider.js │ ├── Card │ │ └── index.js │ ├── CartItem │ │ └── index.js │ ├── CountDownTimer.js │ ├── Loading.js │ ├── LoadingButton │ │ └── index.js │ ├── Logo │ │ └── index.js │ ├── Popup-UI │ │ ├── assets │ │ │ ├── Error.png │ │ │ ├── Success.png │ │ │ ├── Warning.png │ │ │ └── wifi.png │ │ ├── basic │ │ │ ├── Popup │ │ │ │ └── index.js │ │ │ └── Root │ │ │ │ └── index.js │ │ └── index.js │ ├── ProductItem │ │ ├── OrderItem.js │ │ ├── ProductRow.js │ │ └── index.js │ ├── SearchBar │ │ └── index.js │ ├── ToastMessage │ │ ├── Toast.js │ │ ├── ToastStyles.android.js │ │ ├── ToastStyles.ios.js │ │ ├── Toaster.js │ │ └── index.js │ ├── ToolBar.js │ ├── UserInput │ │ └── index.js │ ├── ViewSlider │ │ ├── dots.js │ │ └── index.js │ └── styles │ │ └── styles.js ├── navigation │ └── CustomSidebarMenu.js ├── screen │ ├── AddressScreen.js │ ├── CategoryScreen.js │ ├── ForgotPasswordScreen.js │ ├── HomeScreen.js │ ├── LoginScreen.js │ ├── MyCartScreen.js │ ├── MyOrderScreen.js │ ├── NewProductScreen.js │ ├── OTPScreen.js │ ├── OffersScreen.js │ ├── PlaceOrder.js │ ├── PopularProductScreen.js │ ├── ProductView.js │ ├── ProductsScreen.js │ ├── ProfileScreen.js │ ├── RegisterScreen.js │ ├── SplashScreen.js │ ├── ThankYou.js │ └── WelcomeScreen.js ├── theme │ ├── Color.js │ ├── Dimension.js │ ├── Fonts.js │ ├── Layout.js │ ├── Strings.js │ ├── appStyles.js │ └── index.js └── utils │ ├── Cart.js │ ├── LocalStorage │ └── index.js │ └── Validator │ ├── Validator.js │ └── rule │ └── index.js └── tsconfig.json /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/.bundle/config -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/App.js -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/__tests__/App.test.tsx -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-Black.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/feather1s.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/assets/fonts/feather1s.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/frontendsource/grocerystore/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/java/com/frontendsource/grocerystore/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/java/com/frontendsource/grocerystore/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/java/com/frontendsource/grocerystore/MainApplication.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/link-assets-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/link-assets-manifest.json -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/index.js -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/GroceryStore.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/GroceryStore.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/GroceryStore.xcodeproj/xcshareddata/xcschemes/GroceryStore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/GroceryStore.xcodeproj/xcshareddata/xcschemes/GroceryStore.xcscheme -------------------------------------------------------------------------------- /ios/GroceryStore/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/GroceryStore/AppDelegate.h -------------------------------------------------------------------------------- /ios/GroceryStore/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/GroceryStore/AppDelegate.mm -------------------------------------------------------------------------------- /ios/GroceryStore/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/GroceryStore/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/GroceryStore/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/GroceryStore/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/GroceryStore/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/GroceryStore/Info.plist -------------------------------------------------------------------------------- /ios/GroceryStore/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/GroceryStore/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/GroceryStore/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/GroceryStore/main.m -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/grocerystoreTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/grocerystoreTests/Info.plist -------------------------------------------------------------------------------- /ios/grocerystoreTests/grocerystoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/grocerystoreTests/grocerystoreTests.m -------------------------------------------------------------------------------- /ios/link-assets-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/ios/link-assets-manifest.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/fonts/Poppins-Black.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/fonts/Poppins-Bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/fonts/Poppins-Thin.ttf -------------------------------------------------------------------------------- /src/assets/fonts/feather1s.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/fonts/feather1s.ttf -------------------------------------------------------------------------------- /src/assets/images/emptycart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/emptycart.png -------------------------------------------------------------------------------- /src/assets/images/emptyproduct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/emptyproduct.png -------------------------------------------------------------------------------- /src/assets/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/home.png -------------------------------------------------------------------------------- /src/assets/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/image.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/mail_box_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/mail_box_img.png -------------------------------------------------------------------------------- /src/assets/images/offer1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/offer1.jpg -------------------------------------------------------------------------------- /src/assets/images/offer2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/offer2.jpg -------------------------------------------------------------------------------- /src/assets/images/original-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/original-logo.png -------------------------------------------------------------------------------- /src/assets/images/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/slide1.png -------------------------------------------------------------------------------- /src/assets/images/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/slide2.png -------------------------------------------------------------------------------- /src/assets/images/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/slide3.png -------------------------------------------------------------------------------- /src/assets/images/thankyou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/thankyou.png -------------------------------------------------------------------------------- /src/assets/images/thumb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/thumb1.png -------------------------------------------------------------------------------- /src/assets/images/thumb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/thumb2.png -------------------------------------------------------------------------------- /src/assets/images/thumb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/thumb3.png -------------------------------------------------------------------------------- /src/assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/assets/images/user.png -------------------------------------------------------------------------------- /src/axios/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/axios/API.js -------------------------------------------------------------------------------- /src/axios/ServerRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/axios/ServerRequest.js -------------------------------------------------------------------------------- /src/components/AppIntro/AppIntro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/AppIntro/AppIntro.js -------------------------------------------------------------------------------- /src/components/AppIntro/components/DoneButton.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/AppIntro/components/DoneButton.android.js -------------------------------------------------------------------------------- /src/components/AppIntro/components/DoneButton.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/AppIntro/components/DoneButton.ios.js -------------------------------------------------------------------------------- /src/components/AppIntro/components/Dots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/AppIntro/components/Dots.js -------------------------------------------------------------------------------- /src/components/AppIntro/components/SkipButton.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/AppIntro/components/SkipButton.android.js -------------------------------------------------------------------------------- /src/components/AppIntro/components/SkipButton.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/AppIntro/components/SkipButton.ios.js -------------------------------------------------------------------------------- /src/components/AppStatusBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/AppStatusBar.js -------------------------------------------------------------------------------- /src/components/BadgeIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/BadgeIcon.js -------------------------------------------------------------------------------- /src/components/BannerSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/BannerSlider.js -------------------------------------------------------------------------------- /src/components/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/Card/index.js -------------------------------------------------------------------------------- /src/components/CartItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/CartItem/index.js -------------------------------------------------------------------------------- /src/components/CountDownTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/CountDownTimer.js -------------------------------------------------------------------------------- /src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/Loading.js -------------------------------------------------------------------------------- /src/components/LoadingButton/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/LoadingButton/index.js -------------------------------------------------------------------------------- /src/components/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/Logo/index.js -------------------------------------------------------------------------------- /src/components/Popup-UI/assets/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/Popup-UI/assets/Error.png -------------------------------------------------------------------------------- /src/components/Popup-UI/assets/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/Popup-UI/assets/Success.png -------------------------------------------------------------------------------- /src/components/Popup-UI/assets/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/Popup-UI/assets/Warning.png -------------------------------------------------------------------------------- /src/components/Popup-UI/assets/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/Popup-UI/assets/wifi.png -------------------------------------------------------------------------------- /src/components/Popup-UI/basic/Popup/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/Popup-UI/basic/Popup/index.js -------------------------------------------------------------------------------- /src/components/Popup-UI/basic/Root/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/Popup-UI/basic/Root/index.js -------------------------------------------------------------------------------- /src/components/Popup-UI/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/Popup-UI/index.js -------------------------------------------------------------------------------- /src/components/ProductItem/OrderItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ProductItem/OrderItem.js -------------------------------------------------------------------------------- /src/components/ProductItem/ProductRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ProductItem/ProductRow.js -------------------------------------------------------------------------------- /src/components/ProductItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ProductItem/index.js -------------------------------------------------------------------------------- /src/components/SearchBar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/SearchBar/index.js -------------------------------------------------------------------------------- /src/components/ToastMessage/Toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ToastMessage/Toast.js -------------------------------------------------------------------------------- /src/components/ToastMessage/ToastStyles.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ToastMessage/ToastStyles.android.js -------------------------------------------------------------------------------- /src/components/ToastMessage/ToastStyles.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ToastMessage/ToastStyles.ios.js -------------------------------------------------------------------------------- /src/components/ToastMessage/Toaster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ToastMessage/Toaster.js -------------------------------------------------------------------------------- /src/components/ToastMessage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ToastMessage/index.js -------------------------------------------------------------------------------- /src/components/ToolBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ToolBar.js -------------------------------------------------------------------------------- /src/components/UserInput/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/UserInput/index.js -------------------------------------------------------------------------------- /src/components/ViewSlider/dots.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ViewSlider/dots.js -------------------------------------------------------------------------------- /src/components/ViewSlider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/ViewSlider/index.js -------------------------------------------------------------------------------- /src/components/styles/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/components/styles/styles.js -------------------------------------------------------------------------------- /src/navigation/CustomSidebarMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/navigation/CustomSidebarMenu.js -------------------------------------------------------------------------------- /src/screen/AddressScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/AddressScreen.js -------------------------------------------------------------------------------- /src/screen/CategoryScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/CategoryScreen.js -------------------------------------------------------------------------------- /src/screen/ForgotPasswordScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/ForgotPasswordScreen.js -------------------------------------------------------------------------------- /src/screen/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/HomeScreen.js -------------------------------------------------------------------------------- /src/screen/LoginScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/LoginScreen.js -------------------------------------------------------------------------------- /src/screen/MyCartScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/MyCartScreen.js -------------------------------------------------------------------------------- /src/screen/MyOrderScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/MyOrderScreen.js -------------------------------------------------------------------------------- /src/screen/NewProductScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/NewProductScreen.js -------------------------------------------------------------------------------- /src/screen/OTPScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/OTPScreen.js -------------------------------------------------------------------------------- /src/screen/OffersScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/OffersScreen.js -------------------------------------------------------------------------------- /src/screen/PlaceOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/PlaceOrder.js -------------------------------------------------------------------------------- /src/screen/PopularProductScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/PopularProductScreen.js -------------------------------------------------------------------------------- /src/screen/ProductView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/ProductView.js -------------------------------------------------------------------------------- /src/screen/ProductsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/ProductsScreen.js -------------------------------------------------------------------------------- /src/screen/ProfileScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/ProfileScreen.js -------------------------------------------------------------------------------- /src/screen/RegisterScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/RegisterScreen.js -------------------------------------------------------------------------------- /src/screen/SplashScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/SplashScreen.js -------------------------------------------------------------------------------- /src/screen/ThankYou.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/ThankYou.js -------------------------------------------------------------------------------- /src/screen/WelcomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/screen/WelcomeScreen.js -------------------------------------------------------------------------------- /src/theme/Color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/theme/Color.js -------------------------------------------------------------------------------- /src/theme/Dimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/theme/Dimension.js -------------------------------------------------------------------------------- /src/theme/Fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/theme/Fonts.js -------------------------------------------------------------------------------- /src/theme/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/theme/Layout.js -------------------------------------------------------------------------------- /src/theme/Strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/theme/Strings.js -------------------------------------------------------------------------------- /src/theme/appStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/theme/appStyles.js -------------------------------------------------------------------------------- /src/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/theme/index.js -------------------------------------------------------------------------------- /src/utils/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/utils/Cart.js -------------------------------------------------------------------------------- /src/utils/LocalStorage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/utils/LocalStorage/index.js -------------------------------------------------------------------------------- /src/utils/Validator/Validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/utils/Validator/Validator.js -------------------------------------------------------------------------------- /src/utils/Validator/rule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/src/utils/Validator/rule/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendsourcecode/GroceryStore-ReactNative/HEAD/tsconfig.json --------------------------------------------------------------------------------