├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── SCREENSHOTS.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── 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 │ │ │ ├── Roboto.ttf │ │ │ ├── Roboto_medium.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ ├── Zocial.ttf │ │ │ └── rubicon-icon-font.ttf │ │ ├── java │ │ └── com │ │ │ └── shoveefrontend │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_stat_onesignal_default.png │ │ ├── drawable-mdpi │ │ └── ic_stat_onesignal_default.png │ │ ├── drawable-xhdpi │ │ └── ic_stat_onesignal_default.png │ │ ├── drawable-xxhdpi │ │ └── ic_stat_onesignal_default.png │ │ ├── drawable-xxxhdpi │ │ └── ic_stat_onesignal_default.png │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── shoveeFrontend-tvOS │ └── Info.plist ├── shoveeFrontend-tvOSTests │ └── Info.plist ├── shoveeFrontend.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── shoveeFrontend-tvOS.xcscheme │ │ └── shoveeFrontend.xcscheme ├── shoveeFrontend │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── shoveeFrontendTests │ ├── Info.plist │ └── shoveeFrontendTests.m ├── metro.config.js ├── package.json ├── res ├── drawable-hdpi │ └── ic_stat_onesignal_default.png ├── drawable-mdpi │ └── ic_stat_onesignal_default.png ├── drawable-xhdpi │ └── ic_stat_onesignal_default.png ├── drawable-xxhdpi │ └── ic_stat_onesignal_default.png └── drawable-xxxhdpi │ └── ic_stat_onesignal_default.png ├── src ├── assets │ ├── icon │ │ ├── chat.png │ │ ├── left-arrow.png │ │ ├── leftarrowwhite.png │ │ ├── more.png │ │ ├── morewhite.png │ │ ├── search.png │ │ ├── shopcartorange.png │ │ ├── shopcartwhite.png │ │ └── shopee-seeklogo.com.png │ └── img │ │ ├── flashsale.png │ │ ├── header-promo.jpeg │ │ ├── profile.jpeg │ │ ├── promo-shopee.jpeg │ │ ├── promo-shopee2.jpeg │ │ └── shopee.png ├── components │ └── dummydata │ │ ├── index.product.js │ │ ├── live.shopee.js │ │ └── shopee.mall.js ├── public │ └── redux │ │ ├── actions │ │ ├── auth.js │ │ ├── cart.js │ │ ├── categories.js │ │ ├── checkout.js │ │ ├── product.js │ │ ├── user.js │ │ └── wishlist.js │ │ ├── reducer │ │ ├── auth.js │ │ ├── cart.js │ │ ├── categories.js │ │ ├── checkout.js │ │ ├── index.js │ │ ├── product.js │ │ ├── user.js │ │ └── wishlist.js │ │ └── store.js ├── routes │ ├── rootNavigator.js │ └── stackNavigator.js └── screens │ ├── AddProduct.js │ ├── Cart.js │ ├── Checkout.js │ ├── DetailProduct.js │ ├── Feed.js │ ├── Home.js │ ├── ListSearch.js │ ├── Loading.js │ ├── LoginPage.js │ ├── Mall.js │ ├── Me.js │ ├── NavigationService.js │ ├── Notification.js │ ├── PurchaseHistories.js │ ├── Search.js │ ├── SellerPage.js │ ├── SplashScreen.js │ └── user │ ├── AccountSettings.js │ ├── AddAddress.js │ ├── AddressSettings.js │ ├── AfterLogin.js │ ├── BeforeLogin.js │ ├── EditProfile.js │ ├── ForgetPassword.js │ ├── Login.js │ ├── NextDaftar.js │ ├── Profile.js │ ├── Register.js │ └── Wishlist.js └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/README.md -------------------------------------------------------------------------------- /SCREENSHOTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/SCREENSHOTS.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/shoveefrontend/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/java/com/shoveefrontend/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/shoveefrontend/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/java/com/shoveefrontend/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_stat_onesignal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/drawable-hdpi/ic_stat_onesignal_default.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_stat_onesignal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/drawable-mdpi/ic_stat_onesignal_default.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_stat_onesignal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/drawable-xhdpi/ic_stat_onesignal_default.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_stat_onesignal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_stat_onesignal_default.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_stat_onesignal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_stat_onesignal_default.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/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/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/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/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/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/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/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/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/index.js -------------------------------------------------------------------------------- /ios/shoveeFrontend-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/shoveeFrontend-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/shoveeFrontend.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/shoveeFrontend.xcodeproj/xcshareddata/xcschemes/shoveeFrontend-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend.xcodeproj/xcshareddata/xcschemes/shoveeFrontend-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/shoveeFrontend.xcodeproj/xcshareddata/xcschemes/shoveeFrontend.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend.xcodeproj/xcshareddata/xcschemes/shoveeFrontend.xcscheme -------------------------------------------------------------------------------- /ios/shoveeFrontend/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend/AppDelegate.h -------------------------------------------------------------------------------- /ios/shoveeFrontend/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend/AppDelegate.m -------------------------------------------------------------------------------- /ios/shoveeFrontend/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/shoveeFrontend/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/shoveeFrontend/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/shoveeFrontend/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend/Info.plist -------------------------------------------------------------------------------- /ios/shoveeFrontend/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontend/main.m -------------------------------------------------------------------------------- /ios/shoveeFrontendTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontendTests/Info.plist -------------------------------------------------------------------------------- /ios/shoveeFrontendTests/shoveeFrontendTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/ios/shoveeFrontendTests/shoveeFrontendTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/package.json -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_stat_onesignal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/res/drawable-hdpi/ic_stat_onesignal_default.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_stat_onesignal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/res/drawable-mdpi/ic_stat_onesignal_default.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_stat_onesignal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/res/drawable-xhdpi/ic_stat_onesignal_default.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_stat_onesignal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/res/drawable-xxhdpi/ic_stat_onesignal_default.png -------------------------------------------------------------------------------- /res/drawable-xxxhdpi/ic_stat_onesignal_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/res/drawable-xxxhdpi/ic_stat_onesignal_default.png -------------------------------------------------------------------------------- /src/assets/icon/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/icon/chat.png -------------------------------------------------------------------------------- /src/assets/icon/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/icon/left-arrow.png -------------------------------------------------------------------------------- /src/assets/icon/leftarrowwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/icon/leftarrowwhite.png -------------------------------------------------------------------------------- /src/assets/icon/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/icon/more.png -------------------------------------------------------------------------------- /src/assets/icon/morewhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/icon/morewhite.png -------------------------------------------------------------------------------- /src/assets/icon/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/icon/search.png -------------------------------------------------------------------------------- /src/assets/icon/shopcartorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/icon/shopcartorange.png -------------------------------------------------------------------------------- /src/assets/icon/shopcartwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/icon/shopcartwhite.png -------------------------------------------------------------------------------- /src/assets/icon/shopee-seeklogo.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/icon/shopee-seeklogo.com.png -------------------------------------------------------------------------------- /src/assets/img/flashsale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/img/flashsale.png -------------------------------------------------------------------------------- /src/assets/img/header-promo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/img/header-promo.jpeg -------------------------------------------------------------------------------- /src/assets/img/profile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/img/profile.jpeg -------------------------------------------------------------------------------- /src/assets/img/promo-shopee.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/img/promo-shopee.jpeg -------------------------------------------------------------------------------- /src/assets/img/promo-shopee2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/img/promo-shopee2.jpeg -------------------------------------------------------------------------------- /src/assets/img/shopee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/assets/img/shopee.png -------------------------------------------------------------------------------- /src/components/dummydata/index.product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/components/dummydata/index.product.js -------------------------------------------------------------------------------- /src/components/dummydata/live.shopee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/components/dummydata/live.shopee.js -------------------------------------------------------------------------------- /src/components/dummydata/shopee.mall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/components/dummydata/shopee.mall.js -------------------------------------------------------------------------------- /src/public/redux/actions/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/actions/auth.js -------------------------------------------------------------------------------- /src/public/redux/actions/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/actions/cart.js -------------------------------------------------------------------------------- /src/public/redux/actions/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/actions/categories.js -------------------------------------------------------------------------------- /src/public/redux/actions/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/actions/checkout.js -------------------------------------------------------------------------------- /src/public/redux/actions/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/actions/product.js -------------------------------------------------------------------------------- /src/public/redux/actions/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/actions/user.js -------------------------------------------------------------------------------- /src/public/redux/actions/wishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/actions/wishlist.js -------------------------------------------------------------------------------- /src/public/redux/reducer/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/reducer/auth.js -------------------------------------------------------------------------------- /src/public/redux/reducer/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/reducer/cart.js -------------------------------------------------------------------------------- /src/public/redux/reducer/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/reducer/categories.js -------------------------------------------------------------------------------- /src/public/redux/reducer/checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/reducer/checkout.js -------------------------------------------------------------------------------- /src/public/redux/reducer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/reducer/index.js -------------------------------------------------------------------------------- /src/public/redux/reducer/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/reducer/product.js -------------------------------------------------------------------------------- /src/public/redux/reducer/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/reducer/user.js -------------------------------------------------------------------------------- /src/public/redux/reducer/wishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/reducer/wishlist.js -------------------------------------------------------------------------------- /src/public/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/public/redux/store.js -------------------------------------------------------------------------------- /src/routes/rootNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/routes/rootNavigator.js -------------------------------------------------------------------------------- /src/routes/stackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/routes/stackNavigator.js -------------------------------------------------------------------------------- /src/screens/AddProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/AddProduct.js -------------------------------------------------------------------------------- /src/screens/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/Cart.js -------------------------------------------------------------------------------- /src/screens/Checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/Checkout.js -------------------------------------------------------------------------------- /src/screens/DetailProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/DetailProduct.js -------------------------------------------------------------------------------- /src/screens/Feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/Feed.js -------------------------------------------------------------------------------- /src/screens/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/Home.js -------------------------------------------------------------------------------- /src/screens/ListSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/ListSearch.js -------------------------------------------------------------------------------- /src/screens/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/Loading.js -------------------------------------------------------------------------------- /src/screens/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/LoginPage.js -------------------------------------------------------------------------------- /src/screens/Mall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/Mall.js -------------------------------------------------------------------------------- /src/screens/Me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/Me.js -------------------------------------------------------------------------------- /src/screens/NavigationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/NavigationService.js -------------------------------------------------------------------------------- /src/screens/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/Notification.js -------------------------------------------------------------------------------- /src/screens/PurchaseHistories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/PurchaseHistories.js -------------------------------------------------------------------------------- /src/screens/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/Search.js -------------------------------------------------------------------------------- /src/screens/SellerPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/SellerPage.js -------------------------------------------------------------------------------- /src/screens/SplashScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/SplashScreen.js -------------------------------------------------------------------------------- /src/screens/user/AccountSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/AccountSettings.js -------------------------------------------------------------------------------- /src/screens/user/AddAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/AddAddress.js -------------------------------------------------------------------------------- /src/screens/user/AddressSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/AddressSettings.js -------------------------------------------------------------------------------- /src/screens/user/AfterLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/AfterLogin.js -------------------------------------------------------------------------------- /src/screens/user/BeforeLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/BeforeLogin.js -------------------------------------------------------------------------------- /src/screens/user/EditProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/EditProfile.js -------------------------------------------------------------------------------- /src/screens/user/ForgetPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/ForgetPassword.js -------------------------------------------------------------------------------- /src/screens/user/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/Login.js -------------------------------------------------------------------------------- /src/screens/user/NextDaftar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/NextDaftar.js -------------------------------------------------------------------------------- /src/screens/user/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/Profile.js -------------------------------------------------------------------------------- /src/screens/user/Register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/Register.js -------------------------------------------------------------------------------- /src/screens/user/Wishlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/src/screens/user/Wishlist.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhdrare/Shovee-Frontend/HEAD/yarn.lock --------------------------------------------------------------------------------