├── .gitignore ├── .metadata ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── android ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── app │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── e_commerce_app_flutter │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── launcher_icon.png │ │ │ ├── drawable-ldpi │ │ │ └── launcher_icon.png │ │ │ ├── drawable-mdpi │ │ │ └── launcher_icon.png │ │ │ ├── drawable-xhdpi │ │ │ └── launcher_icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── launcher_icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── launcher_icon.png │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle └── settings_aar.gradle ├── assets ├── fonts │ └── muli │ │ ├── Muli-Bold.ttf │ │ ├── Muli-BoldItalic.ttf │ │ ├── Muli-ExtraLight.ttf │ │ ├── Muli-ExtraLightItalic.ttf │ │ ├── Muli-Italic.ttf │ │ ├── Muli-Light.ttf │ │ ├── Muli-LightItalic.ttf │ │ ├── Muli-Semi-BoldItalic.ttf │ │ ├── Muli-SemiBold.ttf │ │ └── Muli.ttf ├── icons │ ├── Art.svg │ ├── Back ICon.svg │ ├── Bell.svg │ ├── Bill Icon.svg │ ├── Books.svg │ ├── Call.svg │ ├── Camera Icon.svg │ ├── Cart Icon.svg │ ├── Cash.svg │ ├── Chat bubble Icon.svg │ ├── Check mark rounde.svg │ ├── Close.svg │ ├── Conversation.svg │ ├── Discount.svg │ ├── DiscountTag.svg │ ├── Discover.svg │ ├── Electronics.svg │ ├── Error.svg │ ├── Fashion.svg │ ├── Flash Icon.svg │ ├── Game Icon.svg │ ├── Gift Icon.svg │ ├── Groceries.svg │ ├── Heart Icon.svg │ ├── Heart Icon_2.svg │ ├── Location point.svg │ ├── Lock.svg │ ├── Log out.svg │ ├── Mail.svg │ ├── Others.svg │ ├── Parcel.svg │ ├── Phone.svg │ ├── Plus Icon.svg │ ├── Question mark.svg │ ├── Search Icon.svg │ ├── Settings.svg │ ├── Shop Icon.svg │ ├── Star Icon.svg │ ├── Success.svg │ ├── Trash.svg │ ├── User Icon.svg │ ├── User.svg │ ├── add_favourites.svg │ ├── add_location.svg │ ├── arrow_right.svg │ ├── empty_bag.svg │ ├── empty_box.svg │ ├── empty_cart.svg │ ├── facebook-2.svg │ ├── github_icon.svg │ ├── google-icon.svg │ ├── instagram_icon.svg │ ├── linkedin_icon.svg │ ├── network_error.svg │ ├── receipt.svg │ ├── remove.svg │ ├── review.svg │ ├── search_error.svg │ ├── search_no_found.svg │ └── twitter.svg └── images │ ├── Image Banner 2.png │ ├── Image Banner 3.png │ ├── Image Popular Product 1.png │ ├── Image Popular Product 2.png │ ├── Image Popular Product 3.png │ ├── Pattern Success.png │ ├── Profile Image.png │ ├── apple-pay.png │ ├── arts_banner.jpg │ ├── books_banner.jpg │ ├── developer.jpeg │ ├── electronics_banner.jpg │ ├── fashions_banner.jpg │ ├── fedex-express.png │ ├── glap.png │ ├── google-pay.png │ ├── groceries_banner.jpg │ ├── launcher_icon_trans.png │ ├── launcher_icon_with_bg.png │ ├── mastercard-2.png │ ├── others_banner.jpg │ ├── paypal.png │ ├── product 1 image.png │ ├── ps4_console_blue_1.png │ ├── ps4_console_blue_2.png │ ├── ps4_console_blue_3.png │ ├── ps4_console_blue_4.png │ ├── ps4_console_white_1.png │ ├── ps4_console_white_2.png │ ├── ps4_console_white_3.png │ ├── ps4_console_white_4.png │ ├── shoes2.png │ ├── splash_1.png │ ├── splash_2.png │ ├── splash_3.png │ ├── success.png │ ├── tshirt.png │ ├── visa.png │ └── wireless headset.png ├── illustrations ├── EShopee-Project Tour.mp4 ├── EShopee-screenrecord.mp4 ├── about_developer.png ├── address_dialog.png ├── application_icon.png ├── application_icon.svg ├── cart.png ├── category_product.png ├── change_display_name.png ├── change_display_picture.png ├── change_email.png ├── change_password.png ├── change_phone.png ├── edit_product.png ├── forgot_password.png ├── game_icon.png ├── game_icon.svg ├── home_screen.png ├── home_screen_drawer.png ├── manage_addresses.png ├── my_orders.png ├── my_products.png ├── product_details_1.png ├── product_details_2.png ├── review_dialog.png ├── search_result.png ├── sign_in.png ├── sign_up.png ├── source_code_icon.png ├── source_code_icon.svg ├── splash.png ├── website_icon.png ├── website_icon.svg ├── youtube_icon.png └── youtube_icon.svg ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-1024x1024@1x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ └── Icon-App-83.5x83.5@2x.png │ └── LaunchImage.imageset │ │ ├── Contents.json │ │ ├── LaunchImage.png │ │ ├── LaunchImage@2x.png │ │ ├── LaunchImage@3x.png │ │ └── README.md │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h ├── lib ├── app.dart ├── components │ ├── async_progress_dialog.dart │ ├── custom_suffix_icon.dart │ ├── default_button.dart │ ├── icon_button_with_counter.dart │ ├── no_account_text.dart │ ├── nothingtoshow_container.dart │ ├── product_card.dart │ ├── product_short_detail_card.dart │ ├── rounded_icon_button.dart │ ├── search_field.dart │ ├── social_card.dart │ └── top_rounded_container.dart ├── constants.dart ├── exceptions │ ├── firebaseauth │ │ ├── credential_actions_exceptions.dart │ │ ├── messeged_firebaseauth_exception.dart │ │ ├── reauth_exceptions.dart │ │ ├── signin_exceptions.dart │ │ └── signup_exceptions.dart │ └── local_files_handling │ │ ├── image_picking_exceptions.dart │ │ └── local_file_handling_exception.dart ├── main.dart ├── models │ ├── Address.dart │ ├── AppReview.dart │ ├── CartItem.dart │ ├── Model.dart │ ├── OrderedProduct.dart │ ├── Product.dart │ └── Review.dart ├── screens │ ├── about_developer │ │ ├── about_developer_screen.dart │ │ └── components │ │ │ ├── app_review_dialog.dart │ │ │ └── body.dart │ ├── cart │ │ ├── cart_screen.dart │ │ └── components │ │ │ ├── body.dart │ │ │ ├── cart_item_card.dart │ │ │ └── checkout_card.dart │ ├── category_products │ │ ├── category_products_screen.dart │ │ └── components │ │ │ └── body.dart │ ├── change_display_name │ │ ├── change_display_name_screen.dart │ │ └── components │ │ │ ├── body.dart │ │ │ └── change_display_name_form.dart │ ├── change_display_picture │ │ ├── change_display_picture_screen.dart │ │ ├── components │ │ │ └── body.dart │ │ └── provider_models │ │ │ └── body_model.dart │ ├── change_email │ │ ├── change_email_screen.dart │ │ └── components │ │ │ ├── body.dart │ │ │ └── change_email_form.dart │ ├── change_password │ │ ├── change_password_screen.dart │ │ └── components │ │ │ ├── body.dart │ │ │ └── change_password_form.dart │ ├── change_phone │ │ ├── change_phone_screen.dart │ │ └── components │ │ │ ├── body.dart │ │ │ └── change_phone_number_form.dart │ ├── edit_address │ │ ├── components │ │ │ ├── address_details_form.dart │ │ │ └── body.dart │ │ └── edit_address_screen.dart │ ├── edit_product │ │ ├── components │ │ │ ├── body.dart │ │ │ └── edit_product_form.dart │ │ ├── edit_product_screen.dart │ │ └── provider_models │ │ │ └── ProductDetails.dart │ ├── forgot_password │ │ ├── components │ │ │ ├── body.dart │ │ │ └── forgot_password_form.dart │ │ └── forgot_password_screen.dart │ ├── home │ │ ├── components │ │ │ ├── body.dart │ │ │ ├── categories.dart │ │ │ ├── category_card.dart │ │ │ ├── home_header.dart │ │ │ ├── home_screen_drawer.dart │ │ │ ├── product_type_box.dart │ │ │ ├── products_section.dart │ │ │ └── section_tile.dart │ │ └── home_screen.dart │ ├── manage_addresses │ │ ├── components │ │ │ ├── address_box.dart │ │ │ ├── address_short_details_card.dart │ │ │ └── body.dart │ │ └── manage_addresses_screen.dart │ ├── my_orders │ │ ├── components │ │ │ ├── body.dart │ │ │ └── product_review_dialog.dart │ │ └── my_orders_screen.dart │ ├── my_products │ │ ├── components │ │ │ └── body.dart │ │ └── my_products_screen.dart │ ├── product_details │ │ ├── components │ │ │ ├── body.dart │ │ │ ├── expandable_text.dart │ │ │ ├── fab.dart │ │ │ ├── product_actions_section.dart │ │ │ ├── product_description.dart │ │ │ ├── product_images.dart │ │ │ ├── product_review_section.dart │ │ │ └── review_box.dart │ │ ├── product_details_screen.dart │ │ └── provider_models │ │ │ ├── ExpandText.dart │ │ │ ├── ProductActions.dart │ │ │ └── ProductImageSwiper.dart │ ├── search_result │ │ ├── components │ │ │ └── body.dart │ │ └── search_result_screen.dart │ ├── sign_in │ │ ├── components │ │ │ ├── body.dart │ │ │ └── sign_in_form.dart │ │ └── sign_in_screen.dart │ └── sign_up │ │ ├── components │ │ ├── body.dart │ │ └── sign_up_form.dart │ │ └── sign_up_screen.dart ├── services │ ├── authentification │ │ └── authentification_service.dart │ ├── data_streams │ │ ├── addresses_stream.dart │ │ ├── all_products_stream.dart │ │ ├── cart_items_stream.dart │ │ ├── category_products_stream.dart │ │ ├── data_stream.dart │ │ ├── favourite_products_stream.dart │ │ ├── ordered_products_stream.dart │ │ └── users_products_stream.dart │ ├── database │ │ ├── app_review_database_helper.dart │ │ ├── product_database_helper.dart │ │ └── user_database_helper.dart │ ├── firestore_files_access │ │ └── firestore_files_access_service.dart │ └── local_files_access │ │ └── local_files_access_service.dart ├── size_config.dart ├── theme.dart ├── utils.dart └── wrappers │ └── authentification_wrapper.dart ├── pubspec.lock └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/.classpath -------------------------------------------------------------------------------- /android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/.project -------------------------------------------------------------------------------- /android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/e_commerce_app_flutter/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/kotlin/com/example/e_commerce_app_flutter/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/drawable-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-ldpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/drawable-ldpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/drawable-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/drawable-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/drawable-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/drawable-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /android/settings_aar.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/fonts/muli/Muli-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/fonts/muli/Muli-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/fonts/muli/Muli-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/fonts/muli/Muli-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/fonts/muli/Muli-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/fonts/muli/Muli-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/fonts/muli/Muli-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-Semi-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/fonts/muli/Muli-Semi-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/fonts/muli/Muli-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/muli/Muli.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/fonts/muli/Muli.ttf -------------------------------------------------------------------------------- /assets/icons/Art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Art.svg -------------------------------------------------------------------------------- /assets/icons/Back ICon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Back ICon.svg -------------------------------------------------------------------------------- /assets/icons/Bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Bell.svg -------------------------------------------------------------------------------- /assets/icons/Bill Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Bill Icon.svg -------------------------------------------------------------------------------- /assets/icons/Books.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Books.svg -------------------------------------------------------------------------------- /assets/icons/Call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Call.svg -------------------------------------------------------------------------------- /assets/icons/Camera Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Camera Icon.svg -------------------------------------------------------------------------------- /assets/icons/Cart Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Cart Icon.svg -------------------------------------------------------------------------------- /assets/icons/Cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Cash.svg -------------------------------------------------------------------------------- /assets/icons/Chat bubble Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Chat bubble Icon.svg -------------------------------------------------------------------------------- /assets/icons/Check mark rounde.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Check mark rounde.svg -------------------------------------------------------------------------------- /assets/icons/Close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Close.svg -------------------------------------------------------------------------------- /assets/icons/Conversation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Conversation.svg -------------------------------------------------------------------------------- /assets/icons/Discount.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Discount.svg -------------------------------------------------------------------------------- /assets/icons/DiscountTag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/DiscountTag.svg -------------------------------------------------------------------------------- /assets/icons/Discover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Discover.svg -------------------------------------------------------------------------------- /assets/icons/Electronics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Electronics.svg -------------------------------------------------------------------------------- /assets/icons/Error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Error.svg -------------------------------------------------------------------------------- /assets/icons/Fashion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Fashion.svg -------------------------------------------------------------------------------- /assets/icons/Flash Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Flash Icon.svg -------------------------------------------------------------------------------- /assets/icons/Game Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Game Icon.svg -------------------------------------------------------------------------------- /assets/icons/Gift Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Gift Icon.svg -------------------------------------------------------------------------------- /assets/icons/Groceries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Groceries.svg -------------------------------------------------------------------------------- /assets/icons/Heart Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Heart Icon.svg -------------------------------------------------------------------------------- /assets/icons/Heart Icon_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Heart Icon_2.svg -------------------------------------------------------------------------------- /assets/icons/Location point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Location point.svg -------------------------------------------------------------------------------- /assets/icons/Lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Lock.svg -------------------------------------------------------------------------------- /assets/icons/Log out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Log out.svg -------------------------------------------------------------------------------- /assets/icons/Mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Mail.svg -------------------------------------------------------------------------------- /assets/icons/Others.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Others.svg -------------------------------------------------------------------------------- /assets/icons/Parcel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Parcel.svg -------------------------------------------------------------------------------- /assets/icons/Phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Phone.svg -------------------------------------------------------------------------------- /assets/icons/Plus Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Plus Icon.svg -------------------------------------------------------------------------------- /assets/icons/Question mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Question mark.svg -------------------------------------------------------------------------------- /assets/icons/Search Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Search Icon.svg -------------------------------------------------------------------------------- /assets/icons/Settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Settings.svg -------------------------------------------------------------------------------- /assets/icons/Shop Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Shop Icon.svg -------------------------------------------------------------------------------- /assets/icons/Star Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Star Icon.svg -------------------------------------------------------------------------------- /assets/icons/Success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Success.svg -------------------------------------------------------------------------------- /assets/icons/Trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/Trash.svg -------------------------------------------------------------------------------- /assets/icons/User Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/User Icon.svg -------------------------------------------------------------------------------- /assets/icons/User.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/User.svg -------------------------------------------------------------------------------- /assets/icons/add_favourites.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/add_favourites.svg -------------------------------------------------------------------------------- /assets/icons/add_location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/add_location.svg -------------------------------------------------------------------------------- /assets/icons/arrow_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/arrow_right.svg -------------------------------------------------------------------------------- /assets/icons/empty_bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/empty_bag.svg -------------------------------------------------------------------------------- /assets/icons/empty_box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/empty_box.svg -------------------------------------------------------------------------------- /assets/icons/empty_cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/empty_cart.svg -------------------------------------------------------------------------------- /assets/icons/facebook-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/facebook-2.svg -------------------------------------------------------------------------------- /assets/icons/github_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/github_icon.svg -------------------------------------------------------------------------------- /assets/icons/google-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/google-icon.svg -------------------------------------------------------------------------------- /assets/icons/instagram_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/instagram_icon.svg -------------------------------------------------------------------------------- /assets/icons/linkedin_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/linkedin_icon.svg -------------------------------------------------------------------------------- /assets/icons/network_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/network_error.svg -------------------------------------------------------------------------------- /assets/icons/receipt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/receipt.svg -------------------------------------------------------------------------------- /assets/icons/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/remove.svg -------------------------------------------------------------------------------- /assets/icons/review.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/review.svg -------------------------------------------------------------------------------- /assets/icons/search_error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/search_error.svg -------------------------------------------------------------------------------- /assets/icons/search_no_found.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/search_no_found.svg -------------------------------------------------------------------------------- /assets/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/icons/twitter.svg -------------------------------------------------------------------------------- /assets/images/Image Banner 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/Image Banner 2.png -------------------------------------------------------------------------------- /assets/images/Image Banner 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/Image Banner 3.png -------------------------------------------------------------------------------- /assets/images/Image Popular Product 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/Image Popular Product 1.png -------------------------------------------------------------------------------- /assets/images/Image Popular Product 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/Image Popular Product 2.png -------------------------------------------------------------------------------- /assets/images/Image Popular Product 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/Image Popular Product 3.png -------------------------------------------------------------------------------- /assets/images/Pattern Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/Pattern Success.png -------------------------------------------------------------------------------- /assets/images/Profile Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/Profile Image.png -------------------------------------------------------------------------------- /assets/images/apple-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/apple-pay.png -------------------------------------------------------------------------------- /assets/images/arts_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/arts_banner.jpg -------------------------------------------------------------------------------- /assets/images/books_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/books_banner.jpg -------------------------------------------------------------------------------- /assets/images/developer.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/developer.jpeg -------------------------------------------------------------------------------- /assets/images/electronics_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/electronics_banner.jpg -------------------------------------------------------------------------------- /assets/images/fashions_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/fashions_banner.jpg -------------------------------------------------------------------------------- /assets/images/fedex-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/fedex-express.png -------------------------------------------------------------------------------- /assets/images/glap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/glap.png -------------------------------------------------------------------------------- /assets/images/google-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/google-pay.png -------------------------------------------------------------------------------- /assets/images/groceries_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/groceries_banner.jpg -------------------------------------------------------------------------------- /assets/images/launcher_icon_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/launcher_icon_trans.png -------------------------------------------------------------------------------- /assets/images/launcher_icon_with_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/launcher_icon_with_bg.png -------------------------------------------------------------------------------- /assets/images/mastercard-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/mastercard-2.png -------------------------------------------------------------------------------- /assets/images/others_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/others_banner.jpg -------------------------------------------------------------------------------- /assets/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/paypal.png -------------------------------------------------------------------------------- /assets/images/product 1 image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/product 1 image.png -------------------------------------------------------------------------------- /assets/images/ps4_console_blue_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/ps4_console_blue_1.png -------------------------------------------------------------------------------- /assets/images/ps4_console_blue_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/ps4_console_blue_2.png -------------------------------------------------------------------------------- /assets/images/ps4_console_blue_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/ps4_console_blue_3.png -------------------------------------------------------------------------------- /assets/images/ps4_console_blue_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/ps4_console_blue_4.png -------------------------------------------------------------------------------- /assets/images/ps4_console_white_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/ps4_console_white_1.png -------------------------------------------------------------------------------- /assets/images/ps4_console_white_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/ps4_console_white_2.png -------------------------------------------------------------------------------- /assets/images/ps4_console_white_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/ps4_console_white_3.png -------------------------------------------------------------------------------- /assets/images/ps4_console_white_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/ps4_console_white_4.png -------------------------------------------------------------------------------- /assets/images/shoes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/shoes2.png -------------------------------------------------------------------------------- /assets/images/splash_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/splash_1.png -------------------------------------------------------------------------------- /assets/images/splash_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/splash_2.png -------------------------------------------------------------------------------- /assets/images/splash_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/splash_3.png -------------------------------------------------------------------------------- /assets/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/success.png -------------------------------------------------------------------------------- /assets/images/tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/tshirt.png -------------------------------------------------------------------------------- /assets/images/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/visa.png -------------------------------------------------------------------------------- /assets/images/wireless headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/assets/images/wireless headset.png -------------------------------------------------------------------------------- /illustrations/EShopee-Project Tour.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/EShopee-Project Tour.mp4 -------------------------------------------------------------------------------- /illustrations/EShopee-screenrecord.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/EShopee-screenrecord.mp4 -------------------------------------------------------------------------------- /illustrations/about_developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/about_developer.png -------------------------------------------------------------------------------- /illustrations/address_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/address_dialog.png -------------------------------------------------------------------------------- /illustrations/application_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/application_icon.png -------------------------------------------------------------------------------- /illustrations/application_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/application_icon.svg -------------------------------------------------------------------------------- /illustrations/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/cart.png -------------------------------------------------------------------------------- /illustrations/category_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/category_product.png -------------------------------------------------------------------------------- /illustrations/change_display_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/change_display_name.png -------------------------------------------------------------------------------- /illustrations/change_display_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/change_display_picture.png -------------------------------------------------------------------------------- /illustrations/change_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/change_email.png -------------------------------------------------------------------------------- /illustrations/change_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/change_password.png -------------------------------------------------------------------------------- /illustrations/change_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/change_phone.png -------------------------------------------------------------------------------- /illustrations/edit_product.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/edit_product.png -------------------------------------------------------------------------------- /illustrations/forgot_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/forgot_password.png -------------------------------------------------------------------------------- /illustrations/game_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/game_icon.png -------------------------------------------------------------------------------- /illustrations/game_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/game_icon.svg -------------------------------------------------------------------------------- /illustrations/home_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/home_screen.png -------------------------------------------------------------------------------- /illustrations/home_screen_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/home_screen_drawer.png -------------------------------------------------------------------------------- /illustrations/manage_addresses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/manage_addresses.png -------------------------------------------------------------------------------- /illustrations/my_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/my_orders.png -------------------------------------------------------------------------------- /illustrations/my_products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/my_products.png -------------------------------------------------------------------------------- /illustrations/product_details_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/product_details_1.png -------------------------------------------------------------------------------- /illustrations/product_details_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/product_details_2.png -------------------------------------------------------------------------------- /illustrations/review_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/review_dialog.png -------------------------------------------------------------------------------- /illustrations/search_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/search_result.png -------------------------------------------------------------------------------- /illustrations/sign_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/sign_in.png -------------------------------------------------------------------------------- /illustrations/sign_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/sign_up.png -------------------------------------------------------------------------------- /illustrations/source_code_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/source_code_icon.png -------------------------------------------------------------------------------- /illustrations/source_code_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/source_code_icon.svg -------------------------------------------------------------------------------- /illustrations/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/splash.png -------------------------------------------------------------------------------- /illustrations/website_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/website_icon.png -------------------------------------------------------------------------------- /illustrations/website_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/website_icon.svg -------------------------------------------------------------------------------- /illustrations/youtube_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/youtube_icon.png -------------------------------------------------------------------------------- /illustrations/youtube_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/illustrations/youtube_icon.svg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/components/async_progress_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/async_progress_dialog.dart -------------------------------------------------------------------------------- /lib/components/custom_suffix_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/custom_suffix_icon.dart -------------------------------------------------------------------------------- /lib/components/default_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/default_button.dart -------------------------------------------------------------------------------- /lib/components/icon_button_with_counter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/icon_button_with_counter.dart -------------------------------------------------------------------------------- /lib/components/no_account_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/no_account_text.dart -------------------------------------------------------------------------------- /lib/components/nothingtoshow_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/nothingtoshow_container.dart -------------------------------------------------------------------------------- /lib/components/product_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/product_card.dart -------------------------------------------------------------------------------- /lib/components/product_short_detail_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/product_short_detail_card.dart -------------------------------------------------------------------------------- /lib/components/rounded_icon_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/rounded_icon_button.dart -------------------------------------------------------------------------------- /lib/components/search_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/search_field.dart -------------------------------------------------------------------------------- /lib/components/social_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/social_card.dart -------------------------------------------------------------------------------- /lib/components/top_rounded_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/components/top_rounded_container.dart -------------------------------------------------------------------------------- /lib/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/constants.dart -------------------------------------------------------------------------------- /lib/exceptions/firebaseauth/credential_actions_exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/exceptions/firebaseauth/credential_actions_exceptions.dart -------------------------------------------------------------------------------- /lib/exceptions/firebaseauth/messeged_firebaseauth_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/exceptions/firebaseauth/messeged_firebaseauth_exception.dart -------------------------------------------------------------------------------- /lib/exceptions/firebaseauth/reauth_exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/exceptions/firebaseauth/reauth_exceptions.dart -------------------------------------------------------------------------------- /lib/exceptions/firebaseauth/signin_exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/exceptions/firebaseauth/signin_exceptions.dart -------------------------------------------------------------------------------- /lib/exceptions/firebaseauth/signup_exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/exceptions/firebaseauth/signup_exceptions.dart -------------------------------------------------------------------------------- /lib/exceptions/local_files_handling/image_picking_exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/exceptions/local_files_handling/image_picking_exceptions.dart -------------------------------------------------------------------------------- /lib/exceptions/local_files_handling/local_file_handling_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/exceptions/local_files_handling/local_file_handling_exception.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/models/Address.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/models/Address.dart -------------------------------------------------------------------------------- /lib/models/AppReview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/models/AppReview.dart -------------------------------------------------------------------------------- /lib/models/CartItem.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/models/CartItem.dart -------------------------------------------------------------------------------- /lib/models/Model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/models/Model.dart -------------------------------------------------------------------------------- /lib/models/OrderedProduct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/models/OrderedProduct.dart -------------------------------------------------------------------------------- /lib/models/Product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/models/Product.dart -------------------------------------------------------------------------------- /lib/models/Review.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/models/Review.dart -------------------------------------------------------------------------------- /lib/screens/about_developer/about_developer_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/about_developer/about_developer_screen.dart -------------------------------------------------------------------------------- /lib/screens/about_developer/components/app_review_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/about_developer/components/app_review_dialog.dart -------------------------------------------------------------------------------- /lib/screens/about_developer/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/about_developer/components/body.dart -------------------------------------------------------------------------------- /lib/screens/cart/cart_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/cart/cart_screen.dart -------------------------------------------------------------------------------- /lib/screens/cart/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/cart/components/body.dart -------------------------------------------------------------------------------- /lib/screens/cart/components/cart_item_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/cart/components/cart_item_card.dart -------------------------------------------------------------------------------- /lib/screens/cart/components/checkout_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/cart/components/checkout_card.dart -------------------------------------------------------------------------------- /lib/screens/category_products/category_products_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/category_products/category_products_screen.dart -------------------------------------------------------------------------------- /lib/screens/category_products/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/category_products/components/body.dart -------------------------------------------------------------------------------- /lib/screens/change_display_name/change_display_name_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_display_name/change_display_name_screen.dart -------------------------------------------------------------------------------- /lib/screens/change_display_name/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_display_name/components/body.dart -------------------------------------------------------------------------------- /lib/screens/change_display_name/components/change_display_name_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_display_name/components/change_display_name_form.dart -------------------------------------------------------------------------------- /lib/screens/change_display_picture/change_display_picture_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_display_picture/change_display_picture_screen.dart -------------------------------------------------------------------------------- /lib/screens/change_display_picture/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_display_picture/components/body.dart -------------------------------------------------------------------------------- /lib/screens/change_display_picture/provider_models/body_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_display_picture/provider_models/body_model.dart -------------------------------------------------------------------------------- /lib/screens/change_email/change_email_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_email/change_email_screen.dart -------------------------------------------------------------------------------- /lib/screens/change_email/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_email/components/body.dart -------------------------------------------------------------------------------- /lib/screens/change_email/components/change_email_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_email/components/change_email_form.dart -------------------------------------------------------------------------------- /lib/screens/change_password/change_password_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_password/change_password_screen.dart -------------------------------------------------------------------------------- /lib/screens/change_password/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_password/components/body.dart -------------------------------------------------------------------------------- /lib/screens/change_password/components/change_password_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_password/components/change_password_form.dart -------------------------------------------------------------------------------- /lib/screens/change_phone/change_phone_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_phone/change_phone_screen.dart -------------------------------------------------------------------------------- /lib/screens/change_phone/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_phone/components/body.dart -------------------------------------------------------------------------------- /lib/screens/change_phone/components/change_phone_number_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/change_phone/components/change_phone_number_form.dart -------------------------------------------------------------------------------- /lib/screens/edit_address/components/address_details_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/edit_address/components/address_details_form.dart -------------------------------------------------------------------------------- /lib/screens/edit_address/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/edit_address/components/body.dart -------------------------------------------------------------------------------- /lib/screens/edit_address/edit_address_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/edit_address/edit_address_screen.dart -------------------------------------------------------------------------------- /lib/screens/edit_product/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/edit_product/components/body.dart -------------------------------------------------------------------------------- /lib/screens/edit_product/components/edit_product_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/edit_product/components/edit_product_form.dart -------------------------------------------------------------------------------- /lib/screens/edit_product/edit_product_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/edit_product/edit_product_screen.dart -------------------------------------------------------------------------------- /lib/screens/edit_product/provider_models/ProductDetails.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/edit_product/provider_models/ProductDetails.dart -------------------------------------------------------------------------------- /lib/screens/forgot_password/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/forgot_password/components/body.dart -------------------------------------------------------------------------------- /lib/screens/forgot_password/components/forgot_password_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/forgot_password/components/forgot_password_form.dart -------------------------------------------------------------------------------- /lib/screens/forgot_password/forgot_password_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/forgot_password/forgot_password_screen.dart -------------------------------------------------------------------------------- /lib/screens/home/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/home/components/body.dart -------------------------------------------------------------------------------- /lib/screens/home/components/categories.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/home/components/categories.dart -------------------------------------------------------------------------------- /lib/screens/home/components/category_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/home/components/category_card.dart -------------------------------------------------------------------------------- /lib/screens/home/components/home_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/home/components/home_header.dart -------------------------------------------------------------------------------- /lib/screens/home/components/home_screen_drawer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/home/components/home_screen_drawer.dart -------------------------------------------------------------------------------- /lib/screens/home/components/product_type_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/home/components/product_type_box.dart -------------------------------------------------------------------------------- /lib/screens/home/components/products_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/home/components/products_section.dart -------------------------------------------------------------------------------- /lib/screens/home/components/section_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/home/components/section_tile.dart -------------------------------------------------------------------------------- /lib/screens/home/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/home/home_screen.dart -------------------------------------------------------------------------------- /lib/screens/manage_addresses/components/address_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/manage_addresses/components/address_box.dart -------------------------------------------------------------------------------- /lib/screens/manage_addresses/components/address_short_details_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/manage_addresses/components/address_short_details_card.dart -------------------------------------------------------------------------------- /lib/screens/manage_addresses/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/manage_addresses/components/body.dart -------------------------------------------------------------------------------- /lib/screens/manage_addresses/manage_addresses_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/manage_addresses/manage_addresses_screen.dart -------------------------------------------------------------------------------- /lib/screens/my_orders/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/my_orders/components/body.dart -------------------------------------------------------------------------------- /lib/screens/my_orders/components/product_review_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/my_orders/components/product_review_dialog.dart -------------------------------------------------------------------------------- /lib/screens/my_orders/my_orders_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/my_orders/my_orders_screen.dart -------------------------------------------------------------------------------- /lib/screens/my_products/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/my_products/components/body.dart -------------------------------------------------------------------------------- /lib/screens/my_products/my_products_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/my_products/my_products_screen.dart -------------------------------------------------------------------------------- /lib/screens/product_details/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/components/body.dart -------------------------------------------------------------------------------- /lib/screens/product_details/components/expandable_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/components/expandable_text.dart -------------------------------------------------------------------------------- /lib/screens/product_details/components/fab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/components/fab.dart -------------------------------------------------------------------------------- /lib/screens/product_details/components/product_actions_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/components/product_actions_section.dart -------------------------------------------------------------------------------- /lib/screens/product_details/components/product_description.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/components/product_description.dart -------------------------------------------------------------------------------- /lib/screens/product_details/components/product_images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/components/product_images.dart -------------------------------------------------------------------------------- /lib/screens/product_details/components/product_review_section.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/components/product_review_section.dart -------------------------------------------------------------------------------- /lib/screens/product_details/components/review_box.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/components/review_box.dart -------------------------------------------------------------------------------- /lib/screens/product_details/product_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/product_details_screen.dart -------------------------------------------------------------------------------- /lib/screens/product_details/provider_models/ExpandText.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/provider_models/ExpandText.dart -------------------------------------------------------------------------------- /lib/screens/product_details/provider_models/ProductActions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/provider_models/ProductActions.dart -------------------------------------------------------------------------------- /lib/screens/product_details/provider_models/ProductImageSwiper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/product_details/provider_models/ProductImageSwiper.dart -------------------------------------------------------------------------------- /lib/screens/search_result/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/search_result/components/body.dart -------------------------------------------------------------------------------- /lib/screens/search_result/search_result_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/search_result/search_result_screen.dart -------------------------------------------------------------------------------- /lib/screens/sign_in/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/sign_in/components/body.dart -------------------------------------------------------------------------------- /lib/screens/sign_in/components/sign_in_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/sign_in/components/sign_in_form.dart -------------------------------------------------------------------------------- /lib/screens/sign_in/sign_in_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/sign_in/sign_in_screen.dart -------------------------------------------------------------------------------- /lib/screens/sign_up/components/body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/sign_up/components/body.dart -------------------------------------------------------------------------------- /lib/screens/sign_up/components/sign_up_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/sign_up/components/sign_up_form.dart -------------------------------------------------------------------------------- /lib/screens/sign_up/sign_up_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/screens/sign_up/sign_up_screen.dart -------------------------------------------------------------------------------- /lib/services/authentification/authentification_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/authentification/authentification_service.dart -------------------------------------------------------------------------------- /lib/services/data_streams/addresses_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/data_streams/addresses_stream.dart -------------------------------------------------------------------------------- /lib/services/data_streams/all_products_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/data_streams/all_products_stream.dart -------------------------------------------------------------------------------- /lib/services/data_streams/cart_items_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/data_streams/cart_items_stream.dart -------------------------------------------------------------------------------- /lib/services/data_streams/category_products_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/data_streams/category_products_stream.dart -------------------------------------------------------------------------------- /lib/services/data_streams/data_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/data_streams/data_stream.dart -------------------------------------------------------------------------------- /lib/services/data_streams/favourite_products_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/data_streams/favourite_products_stream.dart -------------------------------------------------------------------------------- /lib/services/data_streams/ordered_products_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/data_streams/ordered_products_stream.dart -------------------------------------------------------------------------------- /lib/services/data_streams/users_products_stream.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/data_streams/users_products_stream.dart -------------------------------------------------------------------------------- /lib/services/database/app_review_database_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/database/app_review_database_helper.dart -------------------------------------------------------------------------------- /lib/services/database/product_database_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/database/product_database_helper.dart -------------------------------------------------------------------------------- /lib/services/database/user_database_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/database/user_database_helper.dart -------------------------------------------------------------------------------- /lib/services/firestore_files_access/firestore_files_access_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/firestore_files_access/firestore_files_access_service.dart -------------------------------------------------------------------------------- /lib/services/local_files_access/local_files_access_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/services/local_files_access/local_files_access_service.dart -------------------------------------------------------------------------------- /lib/size_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/size_config.dart -------------------------------------------------------------------------------- /lib/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/theme.dart -------------------------------------------------------------------------------- /lib/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/utils.dart -------------------------------------------------------------------------------- /lib/wrappers/authentification_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/lib/wrappers/authentification_wrapper.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rahul-badgujar/EShopee-Flutter-eCommerce-App/HEAD/pubspec.yaml --------------------------------------------------------------------------------