├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── google-services.json │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── Poppins-Light.ttf │ │ │ ├── Poppins-Medium.ttf │ │ │ ├── Poppins-Regular.ttf │ │ │ ├── Poppins-SemiBold.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── ic_launcher-web.png │ │ ├── java │ │ └── com │ │ │ └── rn_oreo │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── SplashActivity.java │ │ └── res │ │ ├── drawable │ │ ├── background_splash.xml │ │ └── splash.png │ │ ├── layout │ │ └── launch_screen.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── app.json ├── assets └── fonts │ ├── Poppins-Light.ttf │ ├── Poppins-Medium.ttf │ ├── Poppins-Regular.ttf │ └── Poppins-SemiBold.ttf ├── babel.config.js ├── changelogs.md ├── index.js ├── ios ├── GoogleService-Info.plist ├── OneSignalNotificationServiceExtension │ ├── Info.plist │ ├── NotificationService.h │ ├── NotificationService.m │ └── NotificationService.swift ├── Podfile ├── rn_oreo-tvOS │ └── Info.plist ├── rn_oreo-tvOSTests │ └── Info.plist ├── rn_oreo.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── rn_oreo-tvOS.xcscheme │ │ └── rn_oreo.xcscheme ├── rn_oreo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── rn_oreo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon_1024.png │ │ │ ├── Icon_20@2x.png │ │ │ ├── Icon_20@3x.png │ │ │ ├── Icon_29@2x.png │ │ │ ├── Icon_29@3x.png │ │ │ ├── Icon_40@2x.png │ │ │ ├── Icon_40@3x.png │ │ │ ├── Icon_60@2x.png │ │ │ └── Icon_60@3x.png │ │ └── Contents.json │ ├── Info.plist │ ├── Oreo Fashion.entitlements │ └── main.m ├── rn_oreoTests │ ├── Info.plist │ └── rn_oreoTests.m └── splash.png ├── metro.config.js ├── package.json ├── react-native.config.js ├── src ├── App.js ├── AppRouter.js ├── assets │ ├── images │ │ ├── bg_banner.png │ │ ├── bg_banner@2x.png │ │ ├── bg_banner@3x.png │ │ ├── chat.png │ │ ├── chat@2x.png │ │ ├── chat@3x.png │ │ ├── coupon-dark.png │ │ ├── coupon-dark@2x.png │ │ ├── coupon-dark@3x.png │ │ ├── coupon.png │ │ ├── coupon@2x.png │ │ ├── coupon@3x.png │ │ ├── gateway │ │ │ ├── bacs.png │ │ │ ├── bacs@2x.png │ │ │ ├── bacs@3x.png │ │ │ ├── cheque.png │ │ │ ├── cheque@2x.png │ │ │ ├── cheque@3x.png │ │ │ ├── cod.png │ │ │ ├── cod@2x.png │ │ │ ├── cod@3x.png │ │ │ ├── paypal.png │ │ │ ├── paypal@2x.png │ │ │ ├── paypal@3x.png │ │ │ ├── razorpay.png │ │ │ ├── razorpay@2x.png │ │ │ ├── razorpay@3x.png │ │ │ ├── stripe.png │ │ │ ├── stripe@2x.png │ │ │ ├── stripe@3x.png │ │ │ ├── stripesuport.png │ │ │ ├── stripesuport@2x.png │ │ │ └── stripesuport@3x.png │ │ ├── getting-start │ │ │ ├── bg.png │ │ │ ├── get-start-1.png │ │ │ ├── get-start-2.png │ │ │ └── get-start-3.png │ │ ├── imgCateDefault.png │ │ ├── imgCateDefault@2x.png │ │ ├── imgCateDefault@3x.png │ │ ├── logo-dark.png │ │ ├── logo-dark@2x.png │ │ ├── logo-dark@3x.png │ │ ├── logo.png │ │ ├── logo@2x.png │ │ ├── logo@3x.png │ │ ├── map.png │ │ ├── map@2x.png │ │ ├── map@3x.png │ │ ├── maps-and-flags.png │ │ ├── maps-and-flags@2x.png │ │ ├── maps-and-flags@3x.png │ │ ├── mask.png │ │ ├── mask@2x.png │ │ ├── mask@3x.png │ │ ├── pDefault.png │ │ ├── pDefault@2x.png │ │ ├── pDefault@3x.png │ │ ├── searchDark.png │ │ ├── searchDark@2x.png │ │ ├── searchDark@3x.png │ │ ├── searchLight.png │ │ ├── searchLight@2x.png │ │ ├── searchLight@3x.png │ │ ├── unconnected.png │ │ ├── unconnected@2x.png │ │ ├── unconnected@3x.png │ │ ├── ux.png │ │ ├── ux@2x.png │ │ ├── ux@3x.png │ │ ├── wave-dark.png │ │ ├── wave-dark@2x.png │ │ ├── wave-dark@3x.png │ │ ├── wave.png │ │ ├── wave@2x.png │ │ └── wave@3x.png │ └── video │ │ └── background.mp4 ├── components │ ├── Loading.js │ ├── ScrollableTabView │ │ ├── ItemTab.js │ │ └── index.js │ ├── avatar │ │ ├── Avatar.js │ │ └── __tests__ │ │ │ ├── Avatar.js │ │ │ └── __snapshots__ │ │ │ └── Avatar.js.snap │ ├── badge │ │ ├── Badge.js │ │ ├── __tests__ │ │ │ ├── Badge.js │ │ │ ├── __snapshots__ │ │ │ │ ├── Badge.js.snap │ │ │ │ └── withBadge.js.snap │ │ │ └── withBadge.js │ │ └── withBadge.js │ ├── buttons │ │ ├── Button.js │ │ ├── ButtonGroup.js │ │ └── __tests__ │ │ │ ├── Button.js │ │ │ ├── ButtonGroup.js │ │ │ └── __snapshots__ │ │ │ ├── Button.js.snap │ │ │ └── ButtonGroup.js.snap │ ├── card │ │ ├── Card.js │ │ └── __tests__ │ │ │ ├── Card.js │ │ │ └── __snapshots__ │ │ │ └── Card.js.snap │ ├── checkbox │ │ ├── CheckBox.js │ │ ├── CheckBoxIcon.js │ │ └── __tests__ │ │ │ ├── CheckBox.js │ │ │ └── __snapshots__ │ │ │ └── CheckBox.js.snap │ ├── config │ │ ├── BackgroundImage.js │ │ ├── ThemeProvider.js │ │ ├── ViewPropTypes.js │ │ ├── __tests__ │ │ │ ├── ThemeProvider.js │ │ │ ├── __snapshots__ │ │ │ │ └── ThemeProvider.js.snap │ │ │ └── withTheme.js │ │ ├── colors.js │ │ ├── fonts.js │ │ ├── index.js │ │ ├── spacing.js │ │ ├── theme.js │ │ └── withTheme.js │ ├── divider │ │ ├── Divider.js │ │ └── __tests__ │ │ │ ├── Divider.js │ │ │ └── __snapshots__ │ │ │ └── Divider.js.snap │ ├── header │ │ ├── Header.js │ │ └── __tests__ │ │ │ ├── Header.js │ │ │ └── __snapshots__ │ │ │ └── Header.js.snap │ ├── helpers │ │ ├── getIconType.js │ │ ├── index.js │ │ ├── nodeType.js │ │ ├── normalizeText.js │ │ └── renderNode.js │ ├── icons │ │ ├── Icon.js │ │ └── __tests__ │ │ │ ├── Icon.js │ │ │ └── __snapshots__ │ │ │ └── Icon.js.snap │ ├── image │ │ ├── Image.js │ │ └── __tests__ │ │ │ ├── Image.js │ │ │ └── __snapshots__ │ │ │ └── Image.js.snap │ ├── index.js │ ├── input │ │ ├── Input.js │ │ └── __tests__ │ │ │ ├── Input.js │ │ │ └── __snapshots__ │ │ │ └── Input.js.snap │ ├── list │ │ ├── ListItem.js │ │ └── __tests__ │ │ │ ├── ListItem.js │ │ │ └── __snapshots__ │ │ │ └── ListItem.js.snap │ ├── modal │ │ └── Modal.js │ ├── overlay │ │ ├── Overlay.js │ │ └── __tests__ │ │ │ ├── Overlay.js │ │ │ └── __snapshots__ │ │ │ └── Overlay.js.snap │ ├── pricing │ │ ├── PricingCard.js │ │ └── __tests__ │ │ │ ├── PricingCard.js │ │ │ └── __snapshots__ │ │ │ └── PricingCard.js.snap │ ├── safeareaview │ │ └── SafeAreaView.js │ ├── searchbar │ │ ├── Search.js │ │ ├── SearchBar-android.js │ │ ├── SearchBar-default.js │ │ ├── SearchBar-ios.js │ │ ├── SearchBar.js │ │ └── __tests__ │ │ │ ├── SearchBar-android.js │ │ │ ├── SearchBar-default.js │ │ │ ├── SearchBar-ios.js │ │ │ ├── SearchBar.js │ │ │ ├── __snapshots__ │ │ │ ├── SearchBar-android.js.snap │ │ │ ├── SearchBar-default.js.snap │ │ │ ├── SearchBar-ios.js.snap │ │ │ └── SearchBar.js.snap │ │ │ └── common.js │ ├── slider │ │ ├── Slider.js │ │ └── __tests__ │ │ │ ├── Slider.js │ │ │ └── __snapshots__ │ │ │ └── Slider.js.snap │ ├── social │ │ ├── SocialIcon.js │ │ └── __tests__ │ │ │ ├── SocialIcon.js │ │ │ └── __snapshots__ │ │ │ └── SocialIcon.js.snap │ ├── text │ │ ├── Text.js │ │ └── __tests__ │ │ │ ├── Text.js │ │ │ └── __snapshots__ │ │ │ └── Text.js.snap │ ├── themedview │ │ └── ThemedView.js │ ├── tile │ │ ├── FeaturedTile.js │ │ ├── Tile.js │ │ └── __tests__ │ │ │ ├── FeaturedTile.js │ │ │ ├── Tile.js │ │ │ └── __snapshots__ │ │ │ ├── FeaturedTile.js.snap │ │ │ └── Tile.js.snap │ └── tooltip │ │ ├── Tooltip.js │ │ ├── Triangle.js │ │ ├── __tests__ │ │ ├── Tooltip.js │ │ └── __snapshots__ │ │ │ └── Tooltip.js.snap │ │ └── getTooltipCoordinate.js ├── config-i18n.js ├── config-store.js ├── config │ ├── api.js │ ├── auth.js │ ├── category.js │ ├── config-input-phone-number.js │ ├── config-rate.js │ ├── development.js │ ├── images.js │ ├── navigator.js │ ├── onesignal.js │ ├── product-description.js │ ├── product.js │ └── stripe.js ├── containers │ ├── Button.js │ ├── ButtonGroup.js │ ├── ButtonSwiper.js │ ├── CategoryItem.js │ ├── ChooseItem.js │ ├── Container.js │ ├── Empty.js │ ├── GetStartSwiper.js │ ├── GetStartVideo.js │ ├── Gird.js │ ├── HeaderComponent │ │ ├── CartIcon.js │ │ ├── Icon.js │ │ ├── Logo.js │ │ ├── TextHeader.js │ │ └── index.js │ ├── Heading.js │ ├── ItemCategoryMenu.js │ ├── Loading │ │ └── LoadingDefault.js │ ├── ModalHomePopup.js │ ├── MultiSlider │ │ ├── CustomMarker.js │ │ ├── DefaultMarker.js │ │ ├── converters.js │ │ └── index.js │ ├── OpacityView.js │ ├── Pagination │ │ ├── Dot.js │ │ └── index.js │ ├── Price.js │ ├── ProductItem │ │ ├── ItemCart.js │ │ ├── ItemDefault.js │ │ ├── ItemOrder.js │ │ ├── ItemWishlist.js │ │ └── index.js │ ├── Quantity.js │ ├── Rating.js │ ├── Reviews │ │ ├── HeaderReview.js │ │ ├── ItemReview.js │ │ ├── LineReview.js │ │ └── ListRating.js │ ├── Separator.js │ ├── Sidebar.js │ ├── SocialIcon.js │ ├── Steps │ │ ├── Step.js │ │ └── index.js │ ├── Tabbar │ │ ├── IconTabbar.js │ │ └── index.js │ ├── TextHtml.js │ ├── Unconnected.js │ ├── VariationButton.js │ ├── VariationColor.js │ ├── VariationImage.js │ ├── VendorHeaderDetail.js │ ├── ViewLabel.js │ ├── WishListIcon.js │ ├── food-app │ │ └── Tabbar │ │ │ ├── IconTabbar.js │ │ │ └── index.js │ └── input │ │ ├── Input.js │ │ ├── InputBasic.js │ │ ├── InputCode.js │ │ ├── InputMobile.js │ │ └── InputSelectValue.js ├── hoc │ ├── loading.js │ └── single-data.js ├── locales │ ├── ar.json │ ├── en.json │ └── index.js ├── mock │ ├── attributes.js │ ├── home-screen.js │ ├── product-attributes-default.js │ ├── product-attributes.js │ ├── product.js │ ├── products.js │ ├── variations.js │ └── vendors.js ├── modules │ ├── auth │ │ ├── actions.js │ │ ├── config.js │ │ ├── constants.js │ │ ├── reducer.js │ │ ├── saga.js │ │ ├── selectors.js │ │ ├── service.js │ │ └── validator.js │ ├── blog │ │ └── service.js │ ├── cart │ │ ├── __test__ │ │ │ └── reducer.test.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── helper.js │ │ ├── reducer.js │ │ ├── saga.js │ │ ├── selectors.js │ │ ├── service.js │ │ └── validator.js │ ├── category │ │ ├── actions.js │ │ ├── constants.js │ │ ├── reducer.js │ │ ├── saga.js │ │ ├── selectors.js │ │ └── service.js │ ├── common │ │ ├── actions.js │ │ ├── constants.js │ │ ├── reducer.js │ │ ├── saga.js │ │ ├── selectors.js │ │ └── service.js │ ├── contact │ │ ├── actions.js │ │ ├── constants.js │ │ ├── reducer.js │ │ ├── saga.js │ │ ├── selectors.js │ │ └── service.js │ ├── order │ │ ├── actions.js │ │ ├── constants.js │ │ ├── reducer.js │ │ ├── saga.js │ │ ├── selectors.js │ │ └── service.js │ ├── product │ │ ├── __test__ │ │ │ ├── actions.test.js │ │ │ ├── helper.test.js │ │ │ ├── reducer.test.js │ │ │ └── selectors.test.js │ │ ├── actions.js │ │ ├── constants.js │ │ ├── helper.js │ │ ├── reducer.js │ │ ├── saga.js │ │ ├── selectors.js │ │ └── service.js │ └── vendor │ │ ├── actions.js │ │ ├── constants.js │ │ ├── reducer.js │ │ ├── saga.js │ │ ├── selectors.js │ │ ├── service.js │ │ └── validator.js ├── navigation │ ├── auth-digits-stack.js │ ├── auth-stack.js │ ├── blog_stack.js │ ├── cart-stack.js │ ├── home-drawer.js │ ├── home-tabs.js │ ├── main-stack.js │ ├── profile-stack.js │ └── root-switch.js ├── reducers.js ├── sagas.js ├── screens │ ├── auth-digits │ │ ├── containers │ │ │ ├── ModalVerify.js │ │ │ └── SocialMethods.js │ │ ├── forgot.js │ │ ├── login-mobile.js │ │ ├── login.js │ │ └── register.js │ ├── auth │ │ ├── containers │ │ │ ├── ModalVerify.js │ │ │ └── SocialMethods.js │ │ ├── forgot.js │ │ ├── login-mobile.js │ │ ├── login.js │ │ └── register.js │ ├── blog │ │ ├── blog.js │ │ ├── blogs.js │ │ └── containers │ │ │ ├── InfoViewer.js │ │ │ ├── ItemBlog.js │ │ │ ├── ItemBlogRow.js │ │ │ └── LastestBlog.js │ ├── cart │ │ ├── cart.js │ │ ├── checkout.js │ │ ├── containers │ │ │ ├── AvatarOrderInfo.js │ │ │ ├── CartItem.js │ │ │ ├── CartTotal.js │ │ │ ├── Coupon.js │ │ │ ├── Done.js │ │ │ ├── FooterOrderInfo.js │ │ │ ├── InputCountry.js │ │ │ ├── InputCoupon.js │ │ │ ├── OrderInfo.js │ │ │ ├── Payment.js │ │ │ ├── PaymentForm.js │ │ │ ├── PaymentMethod.js │ │ │ ├── Shipping.js │ │ │ ├── ShippingForm.js │ │ │ └── ShippingMethod.js │ │ ├── gateways │ │ │ ├── Paypal │ │ │ │ └── index.js │ │ │ ├── Razorpay │ │ │ │ └── index.js │ │ │ ├── Stripe │ │ │ │ ├── html.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── webview-checkout.js │ │ ├── webview-payment.js │ │ └── webview-thankyou.js │ ├── get-start.js │ ├── home.js │ ├── home │ │ └── containers │ │ │ ├── Banners │ │ │ ├── Empty.js │ │ │ ├── Gird.js │ │ │ ├── Item.js │ │ │ ├── Scroll.js │ │ │ ├── config.js │ │ │ └── index.js │ │ │ ├── BlogList │ │ │ ├── Gird.js │ │ │ ├── Row.js │ │ │ ├── config.js │ │ │ └── index.js │ │ │ ├── Button │ │ │ └── index.js │ │ │ ├── CategoryList │ │ │ ├── Gird.js │ │ │ ├── Row.js │ │ │ └── index.js │ │ │ ├── CountDown.js │ │ │ ├── Divider.js │ │ │ ├── ProductCategory │ │ │ └── index.js │ │ │ ├── ProductList │ │ │ └── index.js │ │ │ ├── Products │ │ │ ├── Carousel.js │ │ │ ├── Grid.js │ │ │ ├── Item2.js │ │ │ ├── List.js │ │ │ └── index.js │ │ │ ├── Search.js │ │ │ ├── Slideshow │ │ │ ├── Basic.js │ │ │ ├── Creative.js │ │ │ └── index.js │ │ │ ├── Testimonials │ │ │ ├── Style1.js │ │ │ ├── Style2.js │ │ │ └── index.js │ │ │ ├── TextInfo.js │ │ │ └── Vendors │ │ │ ├── Item.js │ │ │ └── index.js │ ├── linking-webview.js │ ├── loading.js │ ├── profile │ │ ├── Page.js │ │ ├── about.js │ │ ├── account.js │ │ ├── address-book.js │ │ ├── change-password.js │ │ ├── chat-vendor.js │ │ ├── contact.js │ │ ├── containers │ │ │ ├── Advanced.js │ │ │ ├── ContainerMe.js │ │ │ ├── ContainerPrivacy.js │ │ │ ├── ContainerTerm.js │ │ │ ├── Currency.js │ │ │ ├── HeaderMe.js │ │ │ ├── InformationMe.js │ │ │ ├── Language.js │ │ │ ├── SettingMe.js │ │ │ └── config.js │ │ ├── demo-config.js │ │ ├── downloads.js │ │ ├── edit-account.js │ │ ├── help.js │ │ ├── me.js │ │ ├── notification.js │ │ ├── notifications.js │ │ ├── order.js │ │ ├── order │ │ │ ├── AddressInfo.js │ │ │ ├── ContainerView.js │ │ │ ├── NoteOrder.js │ │ │ ├── OrderItem.js │ │ │ ├── ProductItemOrder.js │ │ │ ├── ShippingMethod.js │ │ │ ├── config.js │ │ │ └── styles.js │ │ ├── orders.js │ │ ├── privacy.js │ │ ├── setting.js │ │ ├── term.js │ │ ├── vendor │ │ │ ├── Chat.js │ │ │ ├── GiftChat │ │ │ │ ├── Bubble.js │ │ │ │ ├── Day.js │ │ │ │ ├── Message.js │ │ │ │ ├── MessageText.js │ │ │ │ ├── Time.js │ │ │ │ └── utils.js │ │ │ └── ItemVendor.js │ │ └── vendors.js │ ├── shop │ │ ├── category.js │ │ ├── category │ │ │ ├── EmptyCategory.js │ │ │ ├── Notification.js │ │ │ ├── ParentCategory.js │ │ │ ├── Style1.js │ │ │ ├── Style2.js │ │ │ ├── Style3.js │ │ │ └── Style4.js │ │ ├── containers │ │ │ ├── AttributeColor.js │ │ │ ├── AttributeImage.js │ │ │ ├── ChartReview.js │ │ │ ├── CommentItem.js │ │ │ ├── InfoRating.js │ │ │ ├── LineReviewProduct.js │ │ │ ├── ProductView.js │ │ │ ├── RadioIcon.js │ │ │ ├── Refine.js │ │ │ ├── RelatedProducts.js │ │ │ ├── SearchProductItem.js │ │ │ ├── SearchRecentItem.js │ │ │ ├── SwitchProduct.js │ │ │ └── ViewRefine.js │ │ ├── filter-attribute.js │ │ ├── filter-category.js │ │ ├── filter-price.js │ │ ├── filter-tag.js │ │ ├── product-attribute.js │ │ ├── product-description.js │ │ ├── product-review-form.js │ │ ├── product-review.js │ │ ├── product.js │ │ ├── product │ │ │ ├── AttributeVariable.js │ │ │ ├── CategoryList.js │ │ │ ├── CategoryName.js │ │ │ ├── FooterProduct.js │ │ │ ├── OptionVariable.js │ │ │ ├── ProductExternal.js │ │ │ ├── ProductGrouped.js │ │ │ ├── ProductImages.js │ │ │ ├── ProductStock.js │ │ │ ├── ProductVariable.js │ │ │ └── ScrollProductDetail.js │ │ ├── products.js │ │ ├── refine.js │ │ ├── search.js │ │ ├── store-detail.js │ │ ├── store-review.js │ │ ├── store │ │ │ ├── AboutStore.js │ │ │ ├── ContactStore.js │ │ │ ├── FollowStore.js │ │ │ ├── ItemProduct.js │ │ │ ├── ItemReview.js │ │ │ ├── ModalFilter.js │ │ │ ├── PolicesStore.js │ │ │ ├── ProductStore.js │ │ │ ├── ReviewsStore.js │ │ │ └── TimeStore.js │ │ └── stores.js │ └── wishlist.js └── utils │ ├── __test__ │ └── currency-formatter.test.js │ ├── action.js │ ├── blog.js │ ├── category.js │ ├── currency-formatter.js │ ├── demo.js │ ├── error.js │ ├── fetch.js │ ├── func.js │ ├── global.js │ ├── navigation.js │ ├── phone.js │ ├── product.js │ ├── rtl.js │ ├── string.js │ ├── text-html.js │ └── time.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android/app/src/main/java/com/rn_oreo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/java/com/rn_oreo/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rn_oreo/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/java/com/rn_oreo/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/rn_oreo/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/java/com/rn_oreo/SplashActivity.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/drawable/background_splash.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/layout/launch_screen.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_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/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_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/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_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/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_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/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/app.json -------------------------------------------------------------------------------- /assets/fonts/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/assets/fonts/Poppins-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/assets/fonts/Poppins-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/assets/fonts/Poppins-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/assets/fonts/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/babel.config.js -------------------------------------------------------------------------------- /changelogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/changelogs.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/index.js -------------------------------------------------------------------------------- /ios/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/OneSignalNotificationServiceExtension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/OneSignalNotificationServiceExtension/Info.plist -------------------------------------------------------------------------------- /ios/OneSignalNotificationServiceExtension/NotificationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/OneSignalNotificationServiceExtension/NotificationService.h -------------------------------------------------------------------------------- /ios/OneSignalNotificationServiceExtension/NotificationService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/OneSignalNotificationServiceExtension/NotificationService.m -------------------------------------------------------------------------------- /ios/OneSignalNotificationServiceExtension/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/OneSignalNotificationServiceExtension/NotificationService.swift -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/rn_oreo-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/rn_oreo-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/rn_oreo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/rn_oreo.xcodeproj/xcshareddata/xcschemes/rn_oreo-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo.xcodeproj/xcshareddata/xcschemes/rn_oreo-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/rn_oreo.xcodeproj/xcshareddata/xcschemes/rn_oreo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo.xcodeproj/xcshareddata/xcschemes/rn_oreo.xcscheme -------------------------------------------------------------------------------- /ios/rn_oreo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/rn_oreo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/rn_oreo.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/rn_oreo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/AppDelegate.h -------------------------------------------------------------------------------- /ios/rn_oreo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/AppDelegate.m -------------------------------------------------------------------------------- /ios/rn_oreo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_1024.png -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_20@2x.png -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_20@3x.png -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_29@2x.png -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_29@3x.png -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_40@2x.png -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_40@3x.png -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_60@2x.png -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/AppIcon.appiconset/Icon_60@3x.png -------------------------------------------------------------------------------- /ios/rn_oreo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/rn_oreo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Info.plist -------------------------------------------------------------------------------- /ios/rn_oreo/Oreo Fashion.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/Oreo Fashion.entitlements -------------------------------------------------------------------------------- /ios/rn_oreo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreo/main.m -------------------------------------------------------------------------------- /ios/rn_oreoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreoTests/Info.plist -------------------------------------------------------------------------------- /ios/rn_oreoTests/rn_oreoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/rn_oreoTests/rn_oreoTests.m -------------------------------------------------------------------------------- /ios/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/ios/splash.png -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/App.js -------------------------------------------------------------------------------- /src/AppRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/AppRouter.js -------------------------------------------------------------------------------- /src/assets/images/bg_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/bg_banner.png -------------------------------------------------------------------------------- /src/assets/images/bg_banner@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/bg_banner@2x.png -------------------------------------------------------------------------------- /src/assets/images/bg_banner@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/bg_banner@3x.png -------------------------------------------------------------------------------- /src/assets/images/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/chat.png -------------------------------------------------------------------------------- /src/assets/images/chat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/chat@2x.png -------------------------------------------------------------------------------- /src/assets/images/chat@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/chat@3x.png -------------------------------------------------------------------------------- /src/assets/images/coupon-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/coupon-dark.png -------------------------------------------------------------------------------- /src/assets/images/coupon-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/coupon-dark@2x.png -------------------------------------------------------------------------------- /src/assets/images/coupon-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/coupon-dark@3x.png -------------------------------------------------------------------------------- /src/assets/images/coupon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/coupon.png -------------------------------------------------------------------------------- /src/assets/images/coupon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/coupon@2x.png -------------------------------------------------------------------------------- /src/assets/images/coupon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/coupon@3x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/bacs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/bacs.png -------------------------------------------------------------------------------- /src/assets/images/gateway/bacs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/bacs@2x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/bacs@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/bacs@3x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/cheque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/cheque.png -------------------------------------------------------------------------------- /src/assets/images/gateway/cheque@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/cheque@2x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/cheque@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/cheque@3x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/cod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/cod.png -------------------------------------------------------------------------------- /src/assets/images/gateway/cod@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/cod@2x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/cod@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/cod@3x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/paypal.png -------------------------------------------------------------------------------- /src/assets/images/gateway/paypal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/paypal@2x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/paypal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/paypal@3x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/razorpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/razorpay.png -------------------------------------------------------------------------------- /src/assets/images/gateway/razorpay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/razorpay@2x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/razorpay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/razorpay@3x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/stripe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/stripe.png -------------------------------------------------------------------------------- /src/assets/images/gateway/stripe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/stripe@2x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/stripe@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/stripe@3x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/stripesuport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/stripesuport.png -------------------------------------------------------------------------------- /src/assets/images/gateway/stripesuport@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/stripesuport@2x.png -------------------------------------------------------------------------------- /src/assets/images/gateway/stripesuport@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/gateway/stripesuport@3x.png -------------------------------------------------------------------------------- /src/assets/images/getting-start/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/getting-start/bg.png -------------------------------------------------------------------------------- /src/assets/images/getting-start/get-start-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/getting-start/get-start-1.png -------------------------------------------------------------------------------- /src/assets/images/getting-start/get-start-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/getting-start/get-start-2.png -------------------------------------------------------------------------------- /src/assets/images/getting-start/get-start-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/getting-start/get-start-3.png -------------------------------------------------------------------------------- /src/assets/images/imgCateDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/imgCateDefault.png -------------------------------------------------------------------------------- /src/assets/images/imgCateDefault@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/imgCateDefault@2x.png -------------------------------------------------------------------------------- /src/assets/images/imgCateDefault@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/imgCateDefault@3x.png -------------------------------------------------------------------------------- /src/assets/images/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/logo-dark.png -------------------------------------------------------------------------------- /src/assets/images/logo-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/logo-dark@2x.png -------------------------------------------------------------------------------- /src/assets/images/logo-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/logo-dark@3x.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/logo@2x.png -------------------------------------------------------------------------------- /src/assets/images/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/logo@3x.png -------------------------------------------------------------------------------- /src/assets/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/map.png -------------------------------------------------------------------------------- /src/assets/images/map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/map@2x.png -------------------------------------------------------------------------------- /src/assets/images/map@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/map@3x.png -------------------------------------------------------------------------------- /src/assets/images/maps-and-flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/maps-and-flags.png -------------------------------------------------------------------------------- /src/assets/images/maps-and-flags@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/maps-and-flags@2x.png -------------------------------------------------------------------------------- /src/assets/images/maps-and-flags@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/maps-and-flags@3x.png -------------------------------------------------------------------------------- /src/assets/images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/mask.png -------------------------------------------------------------------------------- /src/assets/images/mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/mask@2x.png -------------------------------------------------------------------------------- /src/assets/images/mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/mask@3x.png -------------------------------------------------------------------------------- /src/assets/images/pDefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/pDefault.png -------------------------------------------------------------------------------- /src/assets/images/pDefault@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/pDefault@2x.png -------------------------------------------------------------------------------- /src/assets/images/pDefault@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/pDefault@3x.png -------------------------------------------------------------------------------- /src/assets/images/searchDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/searchDark.png -------------------------------------------------------------------------------- /src/assets/images/searchDark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/searchDark@2x.png -------------------------------------------------------------------------------- /src/assets/images/searchDark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/searchDark@3x.png -------------------------------------------------------------------------------- /src/assets/images/searchLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/searchLight.png -------------------------------------------------------------------------------- /src/assets/images/searchLight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/searchLight@2x.png -------------------------------------------------------------------------------- /src/assets/images/searchLight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/searchLight@3x.png -------------------------------------------------------------------------------- /src/assets/images/unconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/unconnected.png -------------------------------------------------------------------------------- /src/assets/images/unconnected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/unconnected@2x.png -------------------------------------------------------------------------------- /src/assets/images/unconnected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/unconnected@3x.png -------------------------------------------------------------------------------- /src/assets/images/ux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/ux.png -------------------------------------------------------------------------------- /src/assets/images/ux@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/ux@2x.png -------------------------------------------------------------------------------- /src/assets/images/ux@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/ux@3x.png -------------------------------------------------------------------------------- /src/assets/images/wave-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/wave-dark.png -------------------------------------------------------------------------------- /src/assets/images/wave-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/wave-dark@2x.png -------------------------------------------------------------------------------- /src/assets/images/wave-dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/wave-dark@3x.png -------------------------------------------------------------------------------- /src/assets/images/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/wave.png -------------------------------------------------------------------------------- /src/assets/images/wave@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/wave@2x.png -------------------------------------------------------------------------------- /src/assets/images/wave@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/images/wave@3x.png -------------------------------------------------------------------------------- /src/assets/video/background.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/assets/video/background.mp4 -------------------------------------------------------------------------------- /src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/Loading.js -------------------------------------------------------------------------------- /src/components/ScrollableTabView/ItemTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/ScrollableTabView/ItemTab.js -------------------------------------------------------------------------------- /src/components/ScrollableTabView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/ScrollableTabView/index.js -------------------------------------------------------------------------------- /src/components/avatar/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/avatar/Avatar.js -------------------------------------------------------------------------------- /src/components/avatar/__tests__/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/avatar/__tests__/Avatar.js -------------------------------------------------------------------------------- /src/components/avatar/__tests__/__snapshots__/Avatar.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/avatar/__tests__/__snapshots__/Avatar.js.snap -------------------------------------------------------------------------------- /src/components/badge/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/badge/Badge.js -------------------------------------------------------------------------------- /src/components/badge/__tests__/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/badge/__tests__/Badge.js -------------------------------------------------------------------------------- /src/components/badge/__tests__/__snapshots__/Badge.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/badge/__tests__/__snapshots__/Badge.js.snap -------------------------------------------------------------------------------- /src/components/badge/__tests__/__snapshots__/withBadge.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/badge/__tests__/__snapshots__/withBadge.js.snap -------------------------------------------------------------------------------- /src/components/badge/__tests__/withBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/badge/__tests__/withBadge.js -------------------------------------------------------------------------------- /src/components/badge/withBadge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/badge/withBadge.js -------------------------------------------------------------------------------- /src/components/buttons/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/buttons/Button.js -------------------------------------------------------------------------------- /src/components/buttons/ButtonGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/buttons/ButtonGroup.js -------------------------------------------------------------------------------- /src/components/buttons/__tests__/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/buttons/__tests__/Button.js -------------------------------------------------------------------------------- /src/components/buttons/__tests__/ButtonGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/buttons/__tests__/ButtonGroup.js -------------------------------------------------------------------------------- /src/components/buttons/__tests__/__snapshots__/Button.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/buttons/__tests__/__snapshots__/Button.js.snap -------------------------------------------------------------------------------- /src/components/buttons/__tests__/__snapshots__/ButtonGroup.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/buttons/__tests__/__snapshots__/ButtonGroup.js.snap -------------------------------------------------------------------------------- /src/components/card/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/card/Card.js -------------------------------------------------------------------------------- /src/components/card/__tests__/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/card/__tests__/Card.js -------------------------------------------------------------------------------- /src/components/card/__tests__/__snapshots__/Card.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/card/__tests__/__snapshots__/Card.js.snap -------------------------------------------------------------------------------- /src/components/checkbox/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/checkbox/CheckBox.js -------------------------------------------------------------------------------- /src/components/checkbox/CheckBoxIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/checkbox/CheckBoxIcon.js -------------------------------------------------------------------------------- /src/components/checkbox/__tests__/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/checkbox/__tests__/CheckBox.js -------------------------------------------------------------------------------- /src/components/checkbox/__tests__/__snapshots__/CheckBox.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/checkbox/__tests__/__snapshots__/CheckBox.js.snap -------------------------------------------------------------------------------- /src/components/config/BackgroundImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/BackgroundImage.js -------------------------------------------------------------------------------- /src/components/config/ThemeProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/ThemeProvider.js -------------------------------------------------------------------------------- /src/components/config/ViewPropTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/ViewPropTypes.js -------------------------------------------------------------------------------- /src/components/config/__tests__/ThemeProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/__tests__/ThemeProvider.js -------------------------------------------------------------------------------- /src/components/config/__tests__/__snapshots__/ThemeProvider.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/__tests__/__snapshots__/ThemeProvider.js.snap -------------------------------------------------------------------------------- /src/components/config/__tests__/withTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/__tests__/withTheme.js -------------------------------------------------------------------------------- /src/components/config/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/colors.js -------------------------------------------------------------------------------- /src/components/config/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/fonts.js -------------------------------------------------------------------------------- /src/components/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/index.js -------------------------------------------------------------------------------- /src/components/config/spacing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/spacing.js -------------------------------------------------------------------------------- /src/components/config/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/theme.js -------------------------------------------------------------------------------- /src/components/config/withTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/config/withTheme.js -------------------------------------------------------------------------------- /src/components/divider/Divider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/divider/Divider.js -------------------------------------------------------------------------------- /src/components/divider/__tests__/Divider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/divider/__tests__/Divider.js -------------------------------------------------------------------------------- /src/components/divider/__tests__/__snapshots__/Divider.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/divider/__tests__/__snapshots__/Divider.js.snap -------------------------------------------------------------------------------- /src/components/header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/header/Header.js -------------------------------------------------------------------------------- /src/components/header/__tests__/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/header/__tests__/Header.js -------------------------------------------------------------------------------- /src/components/header/__tests__/__snapshots__/Header.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/header/__tests__/__snapshots__/Header.js.snap -------------------------------------------------------------------------------- /src/components/helpers/getIconType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/helpers/getIconType.js -------------------------------------------------------------------------------- /src/components/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/helpers/index.js -------------------------------------------------------------------------------- /src/components/helpers/nodeType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/helpers/nodeType.js -------------------------------------------------------------------------------- /src/components/helpers/normalizeText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/helpers/normalizeText.js -------------------------------------------------------------------------------- /src/components/helpers/renderNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/helpers/renderNode.js -------------------------------------------------------------------------------- /src/components/icons/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/icons/Icon.js -------------------------------------------------------------------------------- /src/components/icons/__tests__/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/icons/__tests__/Icon.js -------------------------------------------------------------------------------- /src/components/icons/__tests__/__snapshots__/Icon.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/icons/__tests__/__snapshots__/Icon.js.snap -------------------------------------------------------------------------------- /src/components/image/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/image/Image.js -------------------------------------------------------------------------------- /src/components/image/__tests__/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/image/__tests__/Image.js -------------------------------------------------------------------------------- /src/components/image/__tests__/__snapshots__/Image.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/image/__tests__/__snapshots__/Image.js.snap -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/input/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/input/Input.js -------------------------------------------------------------------------------- /src/components/input/__tests__/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/input/__tests__/Input.js -------------------------------------------------------------------------------- /src/components/input/__tests__/__snapshots__/Input.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/input/__tests__/__snapshots__/Input.js.snap -------------------------------------------------------------------------------- /src/components/list/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/list/ListItem.js -------------------------------------------------------------------------------- /src/components/list/__tests__/ListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/list/__tests__/ListItem.js -------------------------------------------------------------------------------- /src/components/list/__tests__/__snapshots__/ListItem.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/list/__tests__/__snapshots__/ListItem.js.snap -------------------------------------------------------------------------------- /src/components/modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/modal/Modal.js -------------------------------------------------------------------------------- /src/components/overlay/Overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/overlay/Overlay.js -------------------------------------------------------------------------------- /src/components/overlay/__tests__/Overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/overlay/__tests__/Overlay.js -------------------------------------------------------------------------------- /src/components/overlay/__tests__/__snapshots__/Overlay.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/overlay/__tests__/__snapshots__/Overlay.js.snap -------------------------------------------------------------------------------- /src/components/pricing/PricingCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/pricing/PricingCard.js -------------------------------------------------------------------------------- /src/components/pricing/__tests__/PricingCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/pricing/__tests__/PricingCard.js -------------------------------------------------------------------------------- /src/components/pricing/__tests__/__snapshots__/PricingCard.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/pricing/__tests__/__snapshots__/PricingCard.js.snap -------------------------------------------------------------------------------- /src/components/safeareaview/SafeAreaView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/safeareaview/SafeAreaView.js -------------------------------------------------------------------------------- /src/components/searchbar/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/Search.js -------------------------------------------------------------------------------- /src/components/searchbar/SearchBar-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/SearchBar-android.js -------------------------------------------------------------------------------- /src/components/searchbar/SearchBar-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/SearchBar-default.js -------------------------------------------------------------------------------- /src/components/searchbar/SearchBar-ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/SearchBar-ios.js -------------------------------------------------------------------------------- /src/components/searchbar/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/SearchBar.js -------------------------------------------------------------------------------- /src/components/searchbar/__tests__/SearchBar-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/__tests__/SearchBar-android.js -------------------------------------------------------------------------------- /src/components/searchbar/__tests__/SearchBar-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/__tests__/SearchBar-default.js -------------------------------------------------------------------------------- /src/components/searchbar/__tests__/SearchBar-ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/__tests__/SearchBar-ios.js -------------------------------------------------------------------------------- /src/components/searchbar/__tests__/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/__tests__/SearchBar.js -------------------------------------------------------------------------------- /src/components/searchbar/__tests__/__snapshots__/SearchBar-android.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/__tests__/__snapshots__/SearchBar-android.js.snap -------------------------------------------------------------------------------- /src/components/searchbar/__tests__/__snapshots__/SearchBar-default.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/__tests__/__snapshots__/SearchBar-default.js.snap -------------------------------------------------------------------------------- /src/components/searchbar/__tests__/__snapshots__/SearchBar-ios.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/__tests__/__snapshots__/SearchBar-ios.js.snap -------------------------------------------------------------------------------- /src/components/searchbar/__tests__/__snapshots__/SearchBar.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/__tests__/__snapshots__/SearchBar.js.snap -------------------------------------------------------------------------------- /src/components/searchbar/__tests__/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/searchbar/__tests__/common.js -------------------------------------------------------------------------------- /src/components/slider/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/slider/Slider.js -------------------------------------------------------------------------------- /src/components/slider/__tests__/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/slider/__tests__/Slider.js -------------------------------------------------------------------------------- /src/components/slider/__tests__/__snapshots__/Slider.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/slider/__tests__/__snapshots__/Slider.js.snap -------------------------------------------------------------------------------- /src/components/social/SocialIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/social/SocialIcon.js -------------------------------------------------------------------------------- /src/components/social/__tests__/SocialIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/social/__tests__/SocialIcon.js -------------------------------------------------------------------------------- /src/components/social/__tests__/__snapshots__/SocialIcon.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/social/__tests__/__snapshots__/SocialIcon.js.snap -------------------------------------------------------------------------------- /src/components/text/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/text/Text.js -------------------------------------------------------------------------------- /src/components/text/__tests__/Text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/text/__tests__/Text.js -------------------------------------------------------------------------------- /src/components/text/__tests__/__snapshots__/Text.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/text/__tests__/__snapshots__/Text.js.snap -------------------------------------------------------------------------------- /src/components/themedview/ThemedView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/themedview/ThemedView.js -------------------------------------------------------------------------------- /src/components/tile/FeaturedTile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tile/FeaturedTile.js -------------------------------------------------------------------------------- /src/components/tile/Tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tile/Tile.js -------------------------------------------------------------------------------- /src/components/tile/__tests__/FeaturedTile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tile/__tests__/FeaturedTile.js -------------------------------------------------------------------------------- /src/components/tile/__tests__/Tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tile/__tests__/Tile.js -------------------------------------------------------------------------------- /src/components/tile/__tests__/__snapshots__/FeaturedTile.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tile/__tests__/__snapshots__/FeaturedTile.js.snap -------------------------------------------------------------------------------- /src/components/tile/__tests__/__snapshots__/Tile.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tile/__tests__/__snapshots__/Tile.js.snap -------------------------------------------------------------------------------- /src/components/tooltip/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tooltip/Tooltip.js -------------------------------------------------------------------------------- /src/components/tooltip/Triangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tooltip/Triangle.js -------------------------------------------------------------------------------- /src/components/tooltip/__tests__/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tooltip/__tests__/Tooltip.js -------------------------------------------------------------------------------- /src/components/tooltip/__tests__/__snapshots__/Tooltip.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tooltip/__tests__/__snapshots__/Tooltip.js.snap -------------------------------------------------------------------------------- /src/components/tooltip/getTooltipCoordinate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/components/tooltip/getTooltipCoordinate.js -------------------------------------------------------------------------------- /src/config-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/config-i18n.js -------------------------------------------------------------------------------- /src/config-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/config-store.js -------------------------------------------------------------------------------- /src/config/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/config/api.js -------------------------------------------------------------------------------- /src/config/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/config/auth.js -------------------------------------------------------------------------------- /src/config/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/config/category.js -------------------------------------------------------------------------------- /src/config/config-input-phone-number.js: -------------------------------------------------------------------------------- 1 | export const INITIAL_COUNTRY = 'in'; 2 | -------------------------------------------------------------------------------- /src/config/config-rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/config/config-rate.js -------------------------------------------------------------------------------- /src/config/development.js: -------------------------------------------------------------------------------- 1 | export const ENABLE_CONFIG_DEMO = false; 2 | -------------------------------------------------------------------------------- /src/config/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/config/images.js -------------------------------------------------------------------------------- /src/config/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/config/navigator.js -------------------------------------------------------------------------------- /src/config/onesignal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/config/onesignal.js -------------------------------------------------------------------------------- /src/config/product-description.js: -------------------------------------------------------------------------------- 1 | export const ENABLE_WEBVIEW = false; 2 | -------------------------------------------------------------------------------- /src/config/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/config/product.js -------------------------------------------------------------------------------- /src/config/stripe.js: -------------------------------------------------------------------------------- 1 | export const PUBLISHABLE_KEY = 'pk_test_m0D51wLcsdUSafjGsYVNiVJU00coyhxY3c'; 2 | -------------------------------------------------------------------------------- /src/containers/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Button.js -------------------------------------------------------------------------------- /src/containers/ButtonGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ButtonGroup.js -------------------------------------------------------------------------------- /src/containers/ButtonSwiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ButtonSwiper.js -------------------------------------------------------------------------------- /src/containers/CategoryItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/CategoryItem.js -------------------------------------------------------------------------------- /src/containers/ChooseItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ChooseItem.js -------------------------------------------------------------------------------- /src/containers/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Container.js -------------------------------------------------------------------------------- /src/containers/Empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Empty.js -------------------------------------------------------------------------------- /src/containers/GetStartSwiper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/GetStartSwiper.js -------------------------------------------------------------------------------- /src/containers/GetStartVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/GetStartVideo.js -------------------------------------------------------------------------------- /src/containers/Gird.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Gird.js -------------------------------------------------------------------------------- /src/containers/HeaderComponent/CartIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/HeaderComponent/CartIcon.js -------------------------------------------------------------------------------- /src/containers/HeaderComponent/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/HeaderComponent/Icon.js -------------------------------------------------------------------------------- /src/containers/HeaderComponent/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/HeaderComponent/Logo.js -------------------------------------------------------------------------------- /src/containers/HeaderComponent/TextHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/HeaderComponent/TextHeader.js -------------------------------------------------------------------------------- /src/containers/HeaderComponent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/HeaderComponent/index.js -------------------------------------------------------------------------------- /src/containers/Heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Heading.js -------------------------------------------------------------------------------- /src/containers/ItemCategoryMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ItemCategoryMenu.js -------------------------------------------------------------------------------- /src/containers/Loading/LoadingDefault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Loading/LoadingDefault.js -------------------------------------------------------------------------------- /src/containers/ModalHomePopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ModalHomePopup.js -------------------------------------------------------------------------------- /src/containers/MultiSlider/CustomMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/MultiSlider/CustomMarker.js -------------------------------------------------------------------------------- /src/containers/MultiSlider/DefaultMarker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/MultiSlider/DefaultMarker.js -------------------------------------------------------------------------------- /src/containers/MultiSlider/converters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/MultiSlider/converters.js -------------------------------------------------------------------------------- /src/containers/MultiSlider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/MultiSlider/index.js -------------------------------------------------------------------------------- /src/containers/OpacityView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/OpacityView.js -------------------------------------------------------------------------------- /src/containers/Pagination/Dot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Pagination/Dot.js -------------------------------------------------------------------------------- /src/containers/Pagination/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Pagination/index.js -------------------------------------------------------------------------------- /src/containers/Price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Price.js -------------------------------------------------------------------------------- /src/containers/ProductItem/ItemCart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ProductItem/ItemCart.js -------------------------------------------------------------------------------- /src/containers/ProductItem/ItemDefault.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ProductItem/ItemDefault.js -------------------------------------------------------------------------------- /src/containers/ProductItem/ItemOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ProductItem/ItemOrder.js -------------------------------------------------------------------------------- /src/containers/ProductItem/ItemWishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ProductItem/ItemWishlist.js -------------------------------------------------------------------------------- /src/containers/ProductItem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ProductItem/index.js -------------------------------------------------------------------------------- /src/containers/Quantity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Quantity.js -------------------------------------------------------------------------------- /src/containers/Rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Rating.js -------------------------------------------------------------------------------- /src/containers/Reviews/HeaderReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Reviews/HeaderReview.js -------------------------------------------------------------------------------- /src/containers/Reviews/ItemReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Reviews/ItemReview.js -------------------------------------------------------------------------------- /src/containers/Reviews/LineReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Reviews/LineReview.js -------------------------------------------------------------------------------- /src/containers/Reviews/ListRating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Reviews/ListRating.js -------------------------------------------------------------------------------- /src/containers/Separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Separator.js -------------------------------------------------------------------------------- /src/containers/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Sidebar.js -------------------------------------------------------------------------------- /src/containers/SocialIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/SocialIcon.js -------------------------------------------------------------------------------- /src/containers/Steps/Step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Steps/Step.js -------------------------------------------------------------------------------- /src/containers/Steps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Steps/index.js -------------------------------------------------------------------------------- /src/containers/Tabbar/IconTabbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Tabbar/IconTabbar.js -------------------------------------------------------------------------------- /src/containers/Tabbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Tabbar/index.js -------------------------------------------------------------------------------- /src/containers/TextHtml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/TextHtml.js -------------------------------------------------------------------------------- /src/containers/Unconnected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/Unconnected.js -------------------------------------------------------------------------------- /src/containers/VariationButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/VariationButton.js -------------------------------------------------------------------------------- /src/containers/VariationColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/VariationColor.js -------------------------------------------------------------------------------- /src/containers/VariationImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/VariationImage.js -------------------------------------------------------------------------------- /src/containers/VendorHeaderDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/VendorHeaderDetail.js -------------------------------------------------------------------------------- /src/containers/ViewLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/ViewLabel.js -------------------------------------------------------------------------------- /src/containers/WishListIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/WishListIcon.js -------------------------------------------------------------------------------- /src/containers/food-app/Tabbar/IconTabbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/food-app/Tabbar/IconTabbar.js -------------------------------------------------------------------------------- /src/containers/food-app/Tabbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/food-app/Tabbar/index.js -------------------------------------------------------------------------------- /src/containers/input/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/input/Input.js -------------------------------------------------------------------------------- /src/containers/input/InputBasic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/input/InputBasic.js -------------------------------------------------------------------------------- /src/containers/input/InputCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/input/InputCode.js -------------------------------------------------------------------------------- /src/containers/input/InputMobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/input/InputMobile.js -------------------------------------------------------------------------------- /src/containers/input/InputSelectValue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/containers/input/InputSelectValue.js -------------------------------------------------------------------------------- /src/hoc/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/hoc/loading.js -------------------------------------------------------------------------------- /src/hoc/single-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/hoc/single-data.js -------------------------------------------------------------------------------- /src/locales/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/locales/ar.json -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/locales/index.js -------------------------------------------------------------------------------- /src/mock/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/mock/attributes.js -------------------------------------------------------------------------------- /src/mock/home-screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/mock/home-screen.js -------------------------------------------------------------------------------- /src/mock/product-attributes-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/mock/product-attributes-default.js -------------------------------------------------------------------------------- /src/mock/product-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/mock/product-attributes.js -------------------------------------------------------------------------------- /src/mock/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/mock/product.js -------------------------------------------------------------------------------- /src/mock/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/mock/products.js -------------------------------------------------------------------------------- /src/mock/variations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/mock/variations.js -------------------------------------------------------------------------------- /src/mock/vendors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/mock/vendors.js -------------------------------------------------------------------------------- /src/modules/auth/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/auth/actions.js -------------------------------------------------------------------------------- /src/modules/auth/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/auth/config.js -------------------------------------------------------------------------------- /src/modules/auth/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/auth/constants.js -------------------------------------------------------------------------------- /src/modules/auth/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/auth/reducer.js -------------------------------------------------------------------------------- /src/modules/auth/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/auth/saga.js -------------------------------------------------------------------------------- /src/modules/auth/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/auth/selectors.js -------------------------------------------------------------------------------- /src/modules/auth/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/auth/service.js -------------------------------------------------------------------------------- /src/modules/auth/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/auth/validator.js -------------------------------------------------------------------------------- /src/modules/blog/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/blog/service.js -------------------------------------------------------------------------------- /src/modules/cart/__test__/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/cart/__test__/reducer.test.js -------------------------------------------------------------------------------- /src/modules/cart/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/cart/actions.js -------------------------------------------------------------------------------- /src/modules/cart/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/cart/constants.js -------------------------------------------------------------------------------- /src/modules/cart/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/cart/helper.js -------------------------------------------------------------------------------- /src/modules/cart/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/cart/reducer.js -------------------------------------------------------------------------------- /src/modules/cart/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/cart/saga.js -------------------------------------------------------------------------------- /src/modules/cart/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/cart/selectors.js -------------------------------------------------------------------------------- /src/modules/cart/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/cart/service.js -------------------------------------------------------------------------------- /src/modules/cart/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/cart/validator.js -------------------------------------------------------------------------------- /src/modules/category/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/category/actions.js -------------------------------------------------------------------------------- /src/modules/category/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/category/constants.js -------------------------------------------------------------------------------- /src/modules/category/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/category/reducer.js -------------------------------------------------------------------------------- /src/modules/category/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/category/saga.js -------------------------------------------------------------------------------- /src/modules/category/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/category/selectors.js -------------------------------------------------------------------------------- /src/modules/category/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/category/service.js -------------------------------------------------------------------------------- /src/modules/common/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/common/actions.js -------------------------------------------------------------------------------- /src/modules/common/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/common/constants.js -------------------------------------------------------------------------------- /src/modules/common/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/common/reducer.js -------------------------------------------------------------------------------- /src/modules/common/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/common/saga.js -------------------------------------------------------------------------------- /src/modules/common/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/common/selectors.js -------------------------------------------------------------------------------- /src/modules/common/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/common/service.js -------------------------------------------------------------------------------- /src/modules/contact/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/contact/actions.js -------------------------------------------------------------------------------- /src/modules/contact/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/contact/constants.js -------------------------------------------------------------------------------- /src/modules/contact/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/contact/reducer.js -------------------------------------------------------------------------------- /src/modules/contact/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/contact/saga.js -------------------------------------------------------------------------------- /src/modules/contact/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/contact/selectors.js -------------------------------------------------------------------------------- /src/modules/contact/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/contact/service.js -------------------------------------------------------------------------------- /src/modules/order/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/order/actions.js -------------------------------------------------------------------------------- /src/modules/order/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/order/constants.js -------------------------------------------------------------------------------- /src/modules/order/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/order/reducer.js -------------------------------------------------------------------------------- /src/modules/order/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/order/saga.js -------------------------------------------------------------------------------- /src/modules/order/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/order/selectors.js -------------------------------------------------------------------------------- /src/modules/order/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/order/service.js -------------------------------------------------------------------------------- /src/modules/product/__test__/actions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/__test__/actions.test.js -------------------------------------------------------------------------------- /src/modules/product/__test__/helper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/__test__/helper.test.js -------------------------------------------------------------------------------- /src/modules/product/__test__/reducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/__test__/reducer.test.js -------------------------------------------------------------------------------- /src/modules/product/__test__/selectors.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/__test__/selectors.test.js -------------------------------------------------------------------------------- /src/modules/product/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/actions.js -------------------------------------------------------------------------------- /src/modules/product/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/constants.js -------------------------------------------------------------------------------- /src/modules/product/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/helper.js -------------------------------------------------------------------------------- /src/modules/product/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/reducer.js -------------------------------------------------------------------------------- /src/modules/product/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/saga.js -------------------------------------------------------------------------------- /src/modules/product/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/selectors.js -------------------------------------------------------------------------------- /src/modules/product/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/product/service.js -------------------------------------------------------------------------------- /src/modules/vendor/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/vendor/actions.js -------------------------------------------------------------------------------- /src/modules/vendor/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/vendor/constants.js -------------------------------------------------------------------------------- /src/modules/vendor/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/vendor/reducer.js -------------------------------------------------------------------------------- /src/modules/vendor/saga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/vendor/saga.js -------------------------------------------------------------------------------- /src/modules/vendor/selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/vendor/selectors.js -------------------------------------------------------------------------------- /src/modules/vendor/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/vendor/service.js -------------------------------------------------------------------------------- /src/modules/vendor/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/modules/vendor/validator.js -------------------------------------------------------------------------------- /src/navigation/auth-digits-stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/navigation/auth-digits-stack.js -------------------------------------------------------------------------------- /src/navigation/auth-stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/navigation/auth-stack.js -------------------------------------------------------------------------------- /src/navigation/blog_stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/navigation/blog_stack.js -------------------------------------------------------------------------------- /src/navigation/cart-stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/navigation/cart-stack.js -------------------------------------------------------------------------------- /src/navigation/home-drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/navigation/home-drawer.js -------------------------------------------------------------------------------- /src/navigation/home-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/navigation/home-tabs.js -------------------------------------------------------------------------------- /src/navigation/main-stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/navigation/main-stack.js -------------------------------------------------------------------------------- /src/navigation/profile-stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/navigation/profile-stack.js -------------------------------------------------------------------------------- /src/navigation/root-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/navigation/root-switch.js -------------------------------------------------------------------------------- /src/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/reducers.js -------------------------------------------------------------------------------- /src/sagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/sagas.js -------------------------------------------------------------------------------- /src/screens/auth-digits/containers/ModalVerify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth-digits/containers/ModalVerify.js -------------------------------------------------------------------------------- /src/screens/auth-digits/containers/SocialMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth-digits/containers/SocialMethods.js -------------------------------------------------------------------------------- /src/screens/auth-digits/forgot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth-digits/forgot.js -------------------------------------------------------------------------------- /src/screens/auth-digits/login-mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth-digits/login-mobile.js -------------------------------------------------------------------------------- /src/screens/auth-digits/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth-digits/login.js -------------------------------------------------------------------------------- /src/screens/auth-digits/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth-digits/register.js -------------------------------------------------------------------------------- /src/screens/auth/containers/ModalVerify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth/containers/ModalVerify.js -------------------------------------------------------------------------------- /src/screens/auth/containers/SocialMethods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth/containers/SocialMethods.js -------------------------------------------------------------------------------- /src/screens/auth/forgot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth/forgot.js -------------------------------------------------------------------------------- /src/screens/auth/login-mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth/login-mobile.js -------------------------------------------------------------------------------- /src/screens/auth/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth/login.js -------------------------------------------------------------------------------- /src/screens/auth/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/auth/register.js -------------------------------------------------------------------------------- /src/screens/blog/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/blog/blog.js -------------------------------------------------------------------------------- /src/screens/blog/blogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/blog/blogs.js -------------------------------------------------------------------------------- /src/screens/blog/containers/InfoViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/blog/containers/InfoViewer.js -------------------------------------------------------------------------------- /src/screens/blog/containers/ItemBlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/blog/containers/ItemBlog.js -------------------------------------------------------------------------------- /src/screens/blog/containers/ItemBlogRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/blog/containers/ItemBlogRow.js -------------------------------------------------------------------------------- /src/screens/blog/containers/LastestBlog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/blog/containers/LastestBlog.js -------------------------------------------------------------------------------- /src/screens/cart/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/cart.js -------------------------------------------------------------------------------- /src/screens/cart/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/checkout.js -------------------------------------------------------------------------------- /src/screens/cart/containers/AvatarOrderInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/AvatarOrderInfo.js -------------------------------------------------------------------------------- /src/screens/cart/containers/CartItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/CartItem.js -------------------------------------------------------------------------------- /src/screens/cart/containers/CartTotal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/CartTotal.js -------------------------------------------------------------------------------- /src/screens/cart/containers/Coupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/Coupon.js -------------------------------------------------------------------------------- /src/screens/cart/containers/Done.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/Done.js -------------------------------------------------------------------------------- /src/screens/cart/containers/FooterOrderInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/FooterOrderInfo.js -------------------------------------------------------------------------------- /src/screens/cart/containers/InputCountry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/InputCountry.js -------------------------------------------------------------------------------- /src/screens/cart/containers/InputCoupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/InputCoupon.js -------------------------------------------------------------------------------- /src/screens/cart/containers/OrderInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/OrderInfo.js -------------------------------------------------------------------------------- /src/screens/cart/containers/Payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/Payment.js -------------------------------------------------------------------------------- /src/screens/cart/containers/PaymentForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/PaymentForm.js -------------------------------------------------------------------------------- /src/screens/cart/containers/PaymentMethod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/PaymentMethod.js -------------------------------------------------------------------------------- /src/screens/cart/containers/Shipping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/Shipping.js -------------------------------------------------------------------------------- /src/screens/cart/containers/ShippingForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/ShippingForm.js -------------------------------------------------------------------------------- /src/screens/cart/containers/ShippingMethod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/containers/ShippingMethod.js -------------------------------------------------------------------------------- /src/screens/cart/gateways/Paypal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/gateways/Paypal/index.js -------------------------------------------------------------------------------- /src/screens/cart/gateways/Razorpay/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/gateways/Razorpay/index.js -------------------------------------------------------------------------------- /src/screens/cart/gateways/Stripe/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/gateways/Stripe/html.js -------------------------------------------------------------------------------- /src/screens/cart/gateways/Stripe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/gateways/Stripe/index.js -------------------------------------------------------------------------------- /src/screens/cart/gateways/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/gateways/index.js -------------------------------------------------------------------------------- /src/screens/cart/webview-checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/webview-checkout.js -------------------------------------------------------------------------------- /src/screens/cart/webview-payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/webview-payment.js -------------------------------------------------------------------------------- /src/screens/cart/webview-thankyou.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/cart/webview-thankyou.js -------------------------------------------------------------------------------- /src/screens/get-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/get-start.js -------------------------------------------------------------------------------- /src/screens/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home.js -------------------------------------------------------------------------------- /src/screens/home/containers/Banners/Empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Banners/Empty.js -------------------------------------------------------------------------------- /src/screens/home/containers/Banners/Gird.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Banners/Gird.js -------------------------------------------------------------------------------- /src/screens/home/containers/Banners/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Banners/Item.js -------------------------------------------------------------------------------- /src/screens/home/containers/Banners/Scroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Banners/Scroll.js -------------------------------------------------------------------------------- /src/screens/home/containers/Banners/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Banners/config.js -------------------------------------------------------------------------------- /src/screens/home/containers/Banners/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Banners/index.js -------------------------------------------------------------------------------- /src/screens/home/containers/BlogList/Gird.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/BlogList/Gird.js -------------------------------------------------------------------------------- /src/screens/home/containers/BlogList/Row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/BlogList/Row.js -------------------------------------------------------------------------------- /src/screens/home/containers/BlogList/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/BlogList/config.js -------------------------------------------------------------------------------- /src/screens/home/containers/BlogList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/BlogList/index.js -------------------------------------------------------------------------------- /src/screens/home/containers/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Button/index.js -------------------------------------------------------------------------------- /src/screens/home/containers/CategoryList/Gird.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/CategoryList/Gird.js -------------------------------------------------------------------------------- /src/screens/home/containers/CategoryList/Row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/CategoryList/Row.js -------------------------------------------------------------------------------- /src/screens/home/containers/CategoryList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/CategoryList/index.js -------------------------------------------------------------------------------- /src/screens/home/containers/CountDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/CountDown.js -------------------------------------------------------------------------------- /src/screens/home/containers/Divider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Divider.js -------------------------------------------------------------------------------- /src/screens/home/containers/ProductCategory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/ProductCategory/index.js -------------------------------------------------------------------------------- /src/screens/home/containers/ProductList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/ProductList/index.js -------------------------------------------------------------------------------- /src/screens/home/containers/Products/Carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Products/Carousel.js -------------------------------------------------------------------------------- /src/screens/home/containers/Products/Grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Products/Grid.js -------------------------------------------------------------------------------- /src/screens/home/containers/Products/Item2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Products/Item2.js -------------------------------------------------------------------------------- /src/screens/home/containers/Products/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Products/List.js -------------------------------------------------------------------------------- /src/screens/home/containers/Products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Products/index.js -------------------------------------------------------------------------------- /src/screens/home/containers/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Search.js -------------------------------------------------------------------------------- /src/screens/home/containers/Slideshow/Basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Slideshow/Basic.js -------------------------------------------------------------------------------- /src/screens/home/containers/Slideshow/Creative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Slideshow/Creative.js -------------------------------------------------------------------------------- /src/screens/home/containers/Slideshow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Slideshow/index.js -------------------------------------------------------------------------------- /src/screens/home/containers/Testimonials/Style1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Testimonials/Style1.js -------------------------------------------------------------------------------- /src/screens/home/containers/Testimonials/Style2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Testimonials/Style2.js -------------------------------------------------------------------------------- /src/screens/home/containers/Testimonials/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Testimonials/index.js -------------------------------------------------------------------------------- /src/screens/home/containers/TextInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/TextInfo.js -------------------------------------------------------------------------------- /src/screens/home/containers/Vendors/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Vendors/Item.js -------------------------------------------------------------------------------- /src/screens/home/containers/Vendors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/home/containers/Vendors/index.js -------------------------------------------------------------------------------- /src/screens/linking-webview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/linking-webview.js -------------------------------------------------------------------------------- /src/screens/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/loading.js -------------------------------------------------------------------------------- /src/screens/profile/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/Page.js -------------------------------------------------------------------------------- /src/screens/profile/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/about.js -------------------------------------------------------------------------------- /src/screens/profile/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/account.js -------------------------------------------------------------------------------- /src/screens/profile/address-book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/address-book.js -------------------------------------------------------------------------------- /src/screens/profile/change-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/change-password.js -------------------------------------------------------------------------------- /src/screens/profile/chat-vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/chat-vendor.js -------------------------------------------------------------------------------- /src/screens/profile/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/contact.js -------------------------------------------------------------------------------- /src/screens/profile/containers/Advanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/containers/Advanced.js -------------------------------------------------------------------------------- /src/screens/profile/containers/ContainerMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/containers/ContainerMe.js -------------------------------------------------------------------------------- /src/screens/profile/containers/ContainerPrivacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/containers/ContainerPrivacy.js -------------------------------------------------------------------------------- /src/screens/profile/containers/ContainerTerm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/containers/ContainerTerm.js -------------------------------------------------------------------------------- /src/screens/profile/containers/Currency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/containers/Currency.js -------------------------------------------------------------------------------- /src/screens/profile/containers/HeaderMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/containers/HeaderMe.js -------------------------------------------------------------------------------- /src/screens/profile/containers/InformationMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/containers/InformationMe.js -------------------------------------------------------------------------------- /src/screens/profile/containers/Language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/containers/Language.js -------------------------------------------------------------------------------- /src/screens/profile/containers/SettingMe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/containers/SettingMe.js -------------------------------------------------------------------------------- /src/screens/profile/containers/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/containers/config.js -------------------------------------------------------------------------------- /src/screens/profile/demo-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/demo-config.js -------------------------------------------------------------------------------- /src/screens/profile/downloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/downloads.js -------------------------------------------------------------------------------- /src/screens/profile/edit-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/edit-account.js -------------------------------------------------------------------------------- /src/screens/profile/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/help.js -------------------------------------------------------------------------------- /src/screens/profile/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/me.js -------------------------------------------------------------------------------- /src/screens/profile/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/notification.js -------------------------------------------------------------------------------- /src/screens/profile/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/notifications.js -------------------------------------------------------------------------------- /src/screens/profile/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/order.js -------------------------------------------------------------------------------- /src/screens/profile/order/AddressInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/order/AddressInfo.js -------------------------------------------------------------------------------- /src/screens/profile/order/ContainerView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/order/ContainerView.js -------------------------------------------------------------------------------- /src/screens/profile/order/NoteOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/order/NoteOrder.js -------------------------------------------------------------------------------- /src/screens/profile/order/OrderItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/order/OrderItem.js -------------------------------------------------------------------------------- /src/screens/profile/order/ProductItemOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/order/ProductItemOrder.js -------------------------------------------------------------------------------- /src/screens/profile/order/ShippingMethod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/order/ShippingMethod.js -------------------------------------------------------------------------------- /src/screens/profile/order/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/order/config.js -------------------------------------------------------------------------------- /src/screens/profile/order/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/order/styles.js -------------------------------------------------------------------------------- /src/screens/profile/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/orders.js -------------------------------------------------------------------------------- /src/screens/profile/privacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/privacy.js -------------------------------------------------------------------------------- /src/screens/profile/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/setting.js -------------------------------------------------------------------------------- /src/screens/profile/term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/term.js -------------------------------------------------------------------------------- /src/screens/profile/vendor/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/vendor/Chat.js -------------------------------------------------------------------------------- /src/screens/profile/vendor/GiftChat/Bubble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/vendor/GiftChat/Bubble.js -------------------------------------------------------------------------------- /src/screens/profile/vendor/GiftChat/Day.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/vendor/GiftChat/Day.js -------------------------------------------------------------------------------- /src/screens/profile/vendor/GiftChat/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/vendor/GiftChat/Message.js -------------------------------------------------------------------------------- /src/screens/profile/vendor/GiftChat/MessageText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/vendor/GiftChat/MessageText.js -------------------------------------------------------------------------------- /src/screens/profile/vendor/GiftChat/Time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/vendor/GiftChat/Time.js -------------------------------------------------------------------------------- /src/screens/profile/vendor/GiftChat/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/vendor/GiftChat/utils.js -------------------------------------------------------------------------------- /src/screens/profile/vendor/ItemVendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/vendor/ItemVendor.js -------------------------------------------------------------------------------- /src/screens/profile/vendors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/profile/vendors.js -------------------------------------------------------------------------------- /src/screens/shop/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/category.js -------------------------------------------------------------------------------- /src/screens/shop/category/EmptyCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/category/EmptyCategory.js -------------------------------------------------------------------------------- /src/screens/shop/category/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/category/Notification.js -------------------------------------------------------------------------------- /src/screens/shop/category/ParentCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/category/ParentCategory.js -------------------------------------------------------------------------------- /src/screens/shop/category/Style1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/category/Style1.js -------------------------------------------------------------------------------- /src/screens/shop/category/Style2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/category/Style2.js -------------------------------------------------------------------------------- /src/screens/shop/category/Style3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/category/Style3.js -------------------------------------------------------------------------------- /src/screens/shop/category/Style4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/category/Style4.js -------------------------------------------------------------------------------- /src/screens/shop/containers/AttributeColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/AttributeColor.js -------------------------------------------------------------------------------- /src/screens/shop/containers/AttributeImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/AttributeImage.js -------------------------------------------------------------------------------- /src/screens/shop/containers/ChartReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/ChartReview.js -------------------------------------------------------------------------------- /src/screens/shop/containers/CommentItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/CommentItem.js -------------------------------------------------------------------------------- /src/screens/shop/containers/InfoRating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/InfoRating.js -------------------------------------------------------------------------------- /src/screens/shop/containers/LineReviewProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/LineReviewProduct.js -------------------------------------------------------------------------------- /src/screens/shop/containers/ProductView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/ProductView.js -------------------------------------------------------------------------------- /src/screens/shop/containers/RadioIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/RadioIcon.js -------------------------------------------------------------------------------- /src/screens/shop/containers/Refine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/Refine.js -------------------------------------------------------------------------------- /src/screens/shop/containers/RelatedProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/RelatedProducts.js -------------------------------------------------------------------------------- /src/screens/shop/containers/SearchProductItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/SearchProductItem.js -------------------------------------------------------------------------------- /src/screens/shop/containers/SearchRecentItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/SearchRecentItem.js -------------------------------------------------------------------------------- /src/screens/shop/containers/SwitchProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/SwitchProduct.js -------------------------------------------------------------------------------- /src/screens/shop/containers/ViewRefine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/containers/ViewRefine.js -------------------------------------------------------------------------------- /src/screens/shop/filter-attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/filter-attribute.js -------------------------------------------------------------------------------- /src/screens/shop/filter-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/filter-category.js -------------------------------------------------------------------------------- /src/screens/shop/filter-price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/filter-price.js -------------------------------------------------------------------------------- /src/screens/shop/filter-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/filter-tag.js -------------------------------------------------------------------------------- /src/screens/shop/product-attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product-attribute.js -------------------------------------------------------------------------------- /src/screens/shop/product-description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product-description.js -------------------------------------------------------------------------------- /src/screens/shop/product-review-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product-review-form.js -------------------------------------------------------------------------------- /src/screens/shop/product-review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product-review.js -------------------------------------------------------------------------------- /src/screens/shop/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product.js -------------------------------------------------------------------------------- /src/screens/shop/product/AttributeVariable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/AttributeVariable.js -------------------------------------------------------------------------------- /src/screens/shop/product/CategoryList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/CategoryList.js -------------------------------------------------------------------------------- /src/screens/shop/product/CategoryName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/CategoryName.js -------------------------------------------------------------------------------- /src/screens/shop/product/FooterProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/FooterProduct.js -------------------------------------------------------------------------------- /src/screens/shop/product/OptionVariable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/OptionVariable.js -------------------------------------------------------------------------------- /src/screens/shop/product/ProductExternal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/ProductExternal.js -------------------------------------------------------------------------------- /src/screens/shop/product/ProductGrouped.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/ProductGrouped.js -------------------------------------------------------------------------------- /src/screens/shop/product/ProductImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/ProductImages.js -------------------------------------------------------------------------------- /src/screens/shop/product/ProductStock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/ProductStock.js -------------------------------------------------------------------------------- /src/screens/shop/product/ProductVariable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/ProductVariable.js -------------------------------------------------------------------------------- /src/screens/shop/product/ScrollProductDetail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/product/ScrollProductDetail.js -------------------------------------------------------------------------------- /src/screens/shop/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/products.js -------------------------------------------------------------------------------- /src/screens/shop/refine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/refine.js -------------------------------------------------------------------------------- /src/screens/shop/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/search.js -------------------------------------------------------------------------------- /src/screens/shop/store-detail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store-detail.js -------------------------------------------------------------------------------- /src/screens/shop/store-review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store-review.js -------------------------------------------------------------------------------- /src/screens/shop/store/AboutStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store/AboutStore.js -------------------------------------------------------------------------------- /src/screens/shop/store/ContactStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store/ContactStore.js -------------------------------------------------------------------------------- /src/screens/shop/store/FollowStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store/FollowStore.js -------------------------------------------------------------------------------- /src/screens/shop/store/ItemProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store/ItemProduct.js -------------------------------------------------------------------------------- /src/screens/shop/store/ItemReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store/ItemReview.js -------------------------------------------------------------------------------- /src/screens/shop/store/ModalFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store/ModalFilter.js -------------------------------------------------------------------------------- /src/screens/shop/store/PolicesStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store/PolicesStore.js -------------------------------------------------------------------------------- /src/screens/shop/store/ProductStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store/ProductStore.js -------------------------------------------------------------------------------- /src/screens/shop/store/ReviewsStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store/ReviewsStore.js -------------------------------------------------------------------------------- /src/screens/shop/store/TimeStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/store/TimeStore.js -------------------------------------------------------------------------------- /src/screens/shop/stores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/shop/stores.js -------------------------------------------------------------------------------- /src/screens/wishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/screens/wishlist.js -------------------------------------------------------------------------------- /src/utils/__test__/currency-formatter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/__test__/currency-formatter.test.js -------------------------------------------------------------------------------- /src/utils/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/action.js -------------------------------------------------------------------------------- /src/utils/blog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/blog.js -------------------------------------------------------------------------------- /src/utils/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/category.js -------------------------------------------------------------------------------- /src/utils/currency-formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/currency-formatter.js -------------------------------------------------------------------------------- /src/utils/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/demo.js -------------------------------------------------------------------------------- /src/utils/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/error.js -------------------------------------------------------------------------------- /src/utils/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/fetch.js -------------------------------------------------------------------------------- /src/utils/func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/func.js -------------------------------------------------------------------------------- /src/utils/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/global.js -------------------------------------------------------------------------------- /src/utils/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/navigation.js -------------------------------------------------------------------------------- /src/utils/phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/phone.js -------------------------------------------------------------------------------- /src/utils/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/product.js -------------------------------------------------------------------------------- /src/utils/rtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/rtl.js -------------------------------------------------------------------------------- /src/utils/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/string.js -------------------------------------------------------------------------------- /src/utils/text-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/text-html.js -------------------------------------------------------------------------------- /src/utils/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/src/utils/time.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactnative1126/Oreo_Ecommerce_ReactNative/HEAD/yarn.lock --------------------------------------------------------------------------------