├── .github └── workflows │ └── main.yml ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── coffeshop │ │ │ │ └── coffeeshopapp │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── 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-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── dark_map_style.json ├── images │ ├── background_girl.jpg │ ├── coffee_1.jpg │ ├── coffee_2.jpg │ ├── coffee_3.jpg │ ├── coffee_4.jpg │ ├── coffee_5.jpg │ ├── coffee_mug_green.png │ ├── coffee_mug_grey.png │ ├── get_started_girl.png │ ├── logo.png │ ├── map_marker.png │ ├── offer_1.jpg │ ├── offer_2.jpg │ ├── offer_3.jpeg │ ├── restaurant_1.jpg │ ├── restaurant_2.jpg │ ├── restaurant_3.jpg │ ├── restaurant_4.jpg │ └── restaurant_5.jpg └── vectors │ ├── apple.svg │ ├── arrow_back_main.svg │ ├── arrow_green_fill_right.svg │ ├── arrow_green_left.svg │ ├── call_icon_details.svg │ ├── cart_home.svg │ ├── chat_microphone.svg │ ├── chat_selected.svg │ ├── chat_unselected.svg │ ├── check_circle_green_fill.svg │ ├── clock.svg │ ├── cold_coffee.svg │ ├── delete_account.svg │ ├── discover_selected.svg │ ├── discover_unselected.svg │ ├── edit_icon_select_image.svg │ ├── facebook.svg │ ├── favourite_grey.svg │ ├── favourite_red.svg │ ├── filter_green.svg │ ├── filter_white.svg │ ├── google.svg │ ├── gps_fill.svg │ ├── home_selected.svg │ ├── home_unselected.svg │ ├── hot_coffee.svg │ ├── icon_share.svg │ ├── link.svg │ ├── location_icon_cart_page.svg │ ├── map_point_green.svg │ ├── map_point_yellow.svg │ ├── menu_logout.svg │ ├── menu_orders.svg │ ├── menu_points.svg │ ├── menu_settings.svg │ ├── menu_user.svg │ ├── message_icon_details.svg │ ├── minus_white_square.svg │ ├── my_coupens.svg │ ├── my_wallet.svg │ ├── notification_bell.svg │ ├── notification_bell_white.svg │ ├── notification_settings.svg │ ├── password_manager.svg │ ├── password_not_visible.svg │ ├── password_visible.svg │ ├── payment_methods.svg │ ├── play_audio.svg │ ├── plus_circle_green_fill.svg │ ├── plus_square_green_fill_checkbox.svg │ ├── round_user.svg │ ├── search_green.svg │ ├── shop_icon.svg │ ├── shopping_bag_details.svg │ ├── three_dots.svg │ ├── user_selected.svg │ ├── user_unselected.svg │ ├── wishlist_selected.svg │ └── wishlist_unselected.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 └── RunnerTests │ └── RunnerTests.swift ├── lib ├── appview.dart ├── common │ ├── common_bloc.dart │ ├── common_bloc │ │ ├── application_bloc.dart │ │ ├── application_event.dart │ │ ├── application_state.dart │ │ └── bloc.dart │ └── simple_bloc_observer.dart ├── core │ ├── application.dart │ └── configs │ │ ├── routes.dart │ │ ├── size_config.dart │ │ └── theme │ │ ├── app_colors.dart │ │ ├── app_theme.dart │ │ ├── assets.dart │ │ └── strings.dart ├── data │ ├── active_order_data.dart │ ├── add_money_data.dart │ ├── address_data.dart │ ├── banner_data.dart │ ├── cancel_reasons_data.dart │ ├── cart_data.dart │ ├── coupon_data.dart │ ├── feature_products.dart │ ├── notification_data.dart │ ├── restaurant_data.dart │ └── wallet_data.dart ├── domain │ └── repository │ │ ├── location_repository.dart │ │ ├── notification_repository.dart │ │ └── wallet_repository.dart ├── main.dart ├── presentation │ ├── address_map │ │ ├── add_address │ │ │ ├── bloc │ │ │ │ ├── add_address_bloc.dart │ │ │ │ ├── add_address_event.dart │ │ │ │ └── add_address_state.dart │ │ │ └── ui │ │ │ │ └── add_address_screen.dart │ │ ├── delivery_address_list │ │ │ ├── bloc │ │ │ │ ├── delivery_address_list_bloc.dart │ │ │ │ ├── delivery_address_list_event.dart │ │ │ │ └── delivery_address_list_state.dart │ │ │ ├── models │ │ │ │ └── address_model.dart │ │ │ └── ui │ │ │ │ └── delivery_address_list_screen.dart │ │ ├── enter_your_location │ │ │ ├── bloc │ │ │ │ ├── enter_your_location_bloc.dart │ │ │ │ ├── enter_your_location_event.dart │ │ │ │ └── enter_your_location_state.dart │ │ │ ├── ui │ │ │ │ └── enter_your_location_screen.dart │ │ │ └── widgets │ │ │ │ ├── address_bottom_sheet.dart │ │ │ │ └── searchFieldWidget.dart │ │ ├── get_direction │ │ │ ├── bloc │ │ │ │ ├── get_direction_bloc.dart │ │ │ │ ├── get_direction_event.dart │ │ │ │ └── get_direction_state.dart │ │ │ └── ui │ │ │ │ └── get_direction_screen.dart │ │ ├── manage_address │ │ │ ├── bloc │ │ │ │ ├── manage_address_bloc.dart │ │ │ │ ├── manage_address_event.dart │ │ │ │ └── manage_address_state.dart │ │ │ └── ui │ │ │ │ └── manage_address_screen.dart │ │ └── track_live_location │ │ │ ├── bloc │ │ │ ├── track_live_location_bloc.dart │ │ │ ├── track_live_location_event.dart │ │ │ └── track_live_location_state.dart │ │ │ └── ui │ │ │ └── track_live_location_screen.dart │ ├── auth │ │ ├── pages │ │ │ ├── change_password │ │ │ │ ├── bloc │ │ │ │ │ ├── change_password_bloc.dart │ │ │ │ │ ├── change_password_event.dart │ │ │ │ │ └── change_password_state.dart │ │ │ │ └── ui │ │ │ │ │ └── change_password.dart │ │ │ ├── complete_profile │ │ │ │ ├── bloc │ │ │ │ │ ├── complete_profile_bloc.dart │ │ │ │ │ ├── complete_profile_event.dart │ │ │ │ │ └── complete_profile_state.dart │ │ │ │ └── ui │ │ │ │ │ └── complete_profile.dart │ │ │ ├── login │ │ │ │ ├── bloc │ │ │ │ │ ├── login_bloc.dart │ │ │ │ │ ├── login_event.dart │ │ │ │ │ └── login_state.dart │ │ │ │ └── ui │ │ │ │ │ └── login.dart │ │ │ ├── otp │ │ │ │ ├── bloc │ │ │ │ │ ├── otp_bloc.dart │ │ │ │ │ ├── otp_event.dart │ │ │ │ │ └── otp_state.dart │ │ │ │ └── ui │ │ │ │ │ └── otp.dart │ │ │ ├── reset_password │ │ │ │ ├── bloc │ │ │ │ │ ├── reset_password_bloc.dart │ │ │ │ │ ├── reset_password_event.dart │ │ │ │ │ └── reset_password_state.dart │ │ │ │ └── ui │ │ │ │ │ └── reset_password.dart │ │ │ └── signup │ │ │ │ ├── bloc │ │ │ │ ├── signup_bloc.dart │ │ │ │ ├── signup_event.dart │ │ │ │ └── signup_state.dart │ │ │ │ └── ui │ │ │ │ └── signup.dart │ │ └── widgets │ │ │ ├── SocialWidget.dart │ │ │ ├── gender_widget.dart │ │ │ ├── or_widget.dart │ │ │ ├── phone_coutry_field.dart │ │ │ ├── social_row.dart │ │ │ └── textFieldWidget.dart │ ├── cart │ │ ├── bloc │ │ │ ├── cart_bloc.dart │ │ │ ├── cart_event.dart │ │ │ └── cart_state.dart │ │ ├── models │ │ │ └── cart_model.dart │ │ ├── ui │ │ │ └── cart_screen.dart │ │ └── widgets │ │ │ ├── bill_items.dart │ │ │ ├── cart_plus_minus_widget.dart │ │ │ └── item_remove_bottom_sheet.dart │ ├── coupons │ │ ├── bloc │ │ │ ├── coupons_list_bloc.dart │ │ │ ├── coupons_list_event.dart │ │ │ └── coupons_list_state.dart │ │ ├── models │ │ │ └── coupons_model.dart │ │ └── ui │ │ │ └── coupons_list_screen.dart │ ├── dashboard │ │ ├── cafe_list │ │ │ ├── bloc │ │ │ │ ├── cafe_list_bloc.dart │ │ │ │ ├── cafe_list_event.dart │ │ │ │ └── cafe_list_state.dart │ │ │ └── ui │ │ │ │ └── cafe_list_screen.dart │ │ ├── chat │ │ │ ├── bloc │ │ │ │ ├── chat_bloc.dart │ │ │ │ ├── chat_event.dart │ │ │ │ └── chat_state.dart │ │ │ └── ui │ │ │ │ └── chat_screen.dart │ │ ├── coffee_list │ │ │ ├── bloc │ │ │ │ ├── coffee_list_bloc.dart │ │ │ │ ├── coffee_list_event.dart │ │ │ │ └── coffee_list_state.dart │ │ │ └── ui │ │ │ │ └── coffee_list_screen.dart │ │ ├── dashboard_view.dart │ │ ├── discover │ │ │ ├── bloc │ │ │ │ ├── discover_bloc.dart │ │ │ │ ├── discover_event.dart │ │ │ │ └── discover_state.dart │ │ │ └── ui │ │ │ │ └── discover_screen.dart │ │ ├── home │ │ │ ├── bloc │ │ │ │ ├── home_bloc.dart │ │ │ │ ├── home_event.dart │ │ │ │ └── home_state.dart │ │ │ ├── models │ │ │ │ ├── banner_data_model.dart │ │ │ │ ├── product_data_model.dart │ │ │ │ └── restaurant_data_model.dart │ │ │ └── ui │ │ │ │ └── home_screen.dart │ │ ├── navbar_bloc.dart │ │ ├── navbar_event.dart │ │ ├── navbar_state.dart │ │ ├── profile │ │ │ ├── bloc │ │ │ │ ├── profile_bloc.dart │ │ │ │ ├── profile_event.dart │ │ │ │ └── profile_state.dart │ │ │ ├── ui │ │ │ │ └── profile_screen.dart │ │ │ └── widgets │ │ │ │ ├── logout_bottom_sheet.dart │ │ │ │ └── profile_item.dart │ │ ├── widgets │ │ │ ├── animated_dot.dart │ │ │ ├── home_top_widget.dart │ │ │ ├── item_plus_minus_widget.dart │ │ │ ├── restaurant_item.dart │ │ │ └── searchTextField.dart │ │ └── wishlist │ │ │ ├── bloc │ │ │ ├── wishlist_bloc.dart │ │ │ ├── wishlist_event.dart │ │ │ └── wishlist_state.dart │ │ │ └── ui │ │ │ └── wishlist_screen.dart │ ├── intro │ │ ├── bloc │ │ │ ├── get_started_bloc.dart │ │ │ ├── get_started_event.dart │ │ │ └── get_started_state.dart │ │ ├── ui │ │ │ └── get_started.dart │ │ └── widgets │ │ │ └── curved_container.dart │ ├── item_details │ │ ├── bloc │ │ │ ├── item_details_bloc.dart │ │ │ ├── item_details_event.dart │ │ │ └── item_details_state.dart │ │ ├── models │ │ │ └── coffee_type_data_model.dart │ │ ├── ui │ │ │ └── item_details.dart │ │ └── widgets │ │ │ ├── add_to_cart_bottom_view.dart │ │ │ ├── expandable_text.dart │ │ │ └── owner_widget.dart │ ├── notification │ │ ├── bloc │ │ │ ├── notification_list_bloc.dart │ │ │ ├── notification_list_event.dart │ │ │ └── notification_list_state.dart │ │ ├── models │ │ │ └── notification_model.dart │ │ └── ui │ │ │ └── notification_list_screen.dart │ ├── order │ │ ├── cancel_order │ │ │ ├── bloc │ │ │ │ ├── cancel_order_bloc.dart │ │ │ │ ├── cancel_order_event.dart │ │ │ │ └── cancel_order_state.dart │ │ │ └── ui │ │ │ │ └── cancel_order_screen.dart │ │ ├── e_receipt │ │ │ ├── bloc │ │ │ │ ├── e_receipt_bloc.dart │ │ │ │ ├── e_receipt_event.dart │ │ │ │ └── e_receipt_state.dart │ │ │ └── ui │ │ │ │ └── e_receipt_screen.dart │ │ ├── models │ │ │ └── orders_model.dart │ │ ├── my_orders │ │ │ ├── bloc │ │ │ │ ├── my_orders_bloc.dart │ │ │ │ ├── my_orders_event.dart │ │ │ │ └── my_orders_state.dart │ │ │ ├── tabs │ │ │ │ ├── active_orders │ │ │ │ │ ├── bloc │ │ │ │ │ │ ├── active_orders_bloc.dart │ │ │ │ │ │ ├── active_orders_event.dart │ │ │ │ │ │ └── active_orders_state.dart │ │ │ │ │ └── ui │ │ │ │ │ │ └── active_orders_screen.dart │ │ │ │ ├── cancelled_orders │ │ │ │ │ ├── bloc │ │ │ │ │ │ ├── cancelled_orders_bloc.dart │ │ │ │ │ │ ├── cancelled_orders_event.dart │ │ │ │ │ │ └── cancelled_orders_state.dart │ │ │ │ │ └── ui │ │ │ │ │ │ └── cancelled_orders_screen.dart │ │ │ │ └── completed_orders │ │ │ │ │ ├── bloc │ │ │ │ │ ├── completed_orders_bloc.dart │ │ │ │ │ ├── completed_orders_event.dart │ │ │ │ │ └── completed_orders_state.dart │ │ │ │ │ └── ui │ │ │ │ │ └── completed_orders.dart │ │ │ └── ui │ │ │ │ └── my_orders_screen.dart │ │ ├── order_placed │ │ │ ├── bloc │ │ │ │ ├── order_placed_bloc.dart │ │ │ │ ├── order_placed_event.dart │ │ │ │ └── order_placed_state.dart │ │ │ └── ui │ │ │ │ └── order_placed_screen.dart │ │ ├── pickup_location │ │ │ ├── bloc │ │ │ │ ├── pickup_location_bloc.dart │ │ │ │ ├── pickup_location_event.dart │ │ │ │ └── pickup_location_state.dart │ │ │ └── ui │ │ │ │ └── pickup_location_screen.dart │ │ ├── review_summary │ │ │ ├── bloc │ │ │ │ ├── review_summary_bloc.dart │ │ │ │ ├── review_summary_event.dart │ │ │ │ └── review_summary_state.dart │ │ │ └── ui │ │ │ │ └── review_summary.dart │ │ └── track_order │ │ │ ├── bloc │ │ │ ├── track_order_bloc.dart │ │ │ ├── track_order_event.dart │ │ │ └── track_order_state.dart │ │ │ └── ui │ │ │ └── track_order_screen.dart │ ├── permission │ │ ├── location_permission │ │ │ ├── bloc │ │ │ │ ├── location_permission_bloc.dart │ │ │ │ ├── location_permission_event.dart │ │ │ │ └── location_permission_state.dart │ │ │ └── ui │ │ │ │ └── location_permission.dart │ │ └── notification_permission │ │ │ ├── bloc │ │ │ ├── notification_permission_bloc.dart │ │ │ ├── notification_permission_event.dart │ │ │ └── notification_permission_state.dart │ │ │ └── ui │ │ │ └── notification_permission.dart │ ├── qr_code │ │ ├── bloc │ │ │ ├── qr_scan_bloc.dart │ │ │ ├── qr_scan_event.dart │ │ │ └── qr_scan_state.dart │ │ └── ui │ │ │ └── qr_scan_screen.dart │ ├── restaurant_details │ │ ├── bloc │ │ │ ├── restaurant_details_bloc.dart │ │ │ ├── restaurant_details_event.dart │ │ │ └── restaurant_details_state.dart │ │ ├── detail_circle_card.dart │ │ ├── tabs │ │ │ ├── about │ │ │ │ ├── bloc │ │ │ │ │ ├── about_bloc.dart │ │ │ │ │ ├── about_event.dart │ │ │ │ │ └── about_state.dart │ │ │ │ └── ui │ │ │ │ │ └── about_screen.dart │ │ │ ├── gallery │ │ │ │ ├── bloc │ │ │ │ │ ├── gallery_bloc.dart │ │ │ │ │ ├── gallery_event.dart │ │ │ │ │ └── gallery_state.dart │ │ │ │ └── ui │ │ │ │ │ └── gallery_screen.dart │ │ │ ├── menu │ │ │ │ ├── bloc │ │ │ │ │ ├── menu_bloc.dart │ │ │ │ │ ├── menu_event.dart │ │ │ │ │ └── menu_state.dart │ │ │ │ └── ui │ │ │ │ │ └── menu_screen.dart │ │ │ └── reviews │ │ │ │ ├── bloc │ │ │ │ ├── reviews_bloc.dart │ │ │ │ ├── reviews_event.dart │ │ │ │ └── reviews_state.dart │ │ │ │ └── ui │ │ │ │ └── reviews_screen.dart │ │ ├── ui │ │ │ └── restaurant_details_screen.dart │ │ └── widgets │ │ │ └── review_list_widget.dart │ ├── review │ │ ├── add_delivery_review │ │ │ ├── bloc │ │ │ │ ├── add_delivery_review_bloc.dart │ │ │ │ ├── add_delivery_review_event.dart │ │ │ │ └── add_delivery_review_state.dart │ │ │ └── ui │ │ │ │ └── add_delivey_review_screen.dart │ │ ├── add_review │ │ │ ├── bloc │ │ │ │ ├── add_review_bloc.dart │ │ │ │ ├── add_review_event.dart │ │ │ │ └── add_review_state.dart │ │ │ └── ui │ │ │ │ └── add_review_screen.dart │ │ └── total_reviews │ │ │ ├── bloc │ │ │ ├── total_reviews_bloc.dart │ │ │ ├── total_reviews_event.dart │ │ │ └── total_reviews_state.dart │ │ │ └── ui │ │ │ └── total_reviews_screen.dart │ ├── settings │ │ ├── bloc │ │ │ ├── settings_bloc.dart │ │ │ ├── settings_event.dart │ │ │ └── settings_state.dart │ │ └── ui │ │ │ └── settings_screen.dart │ ├── splash │ │ ├── ui │ │ │ └── splash.dart │ │ └── widgets │ │ │ └── common_button.dart │ ├── wallet │ │ ├── add_money │ │ │ ├── bloc │ │ │ │ ├── add_money_bloc.dart │ │ │ │ ├── add_money_event.dart │ │ │ │ └── add_money_state.dart │ │ │ └── ui │ │ │ │ └── add_money_screen.dart │ │ ├── topup_success │ │ │ ├── bloc │ │ │ │ ├── topup_success_bloc.dart │ │ │ │ ├── topup_success_event.dart │ │ │ │ └── topup_success_state.dart │ │ │ └── ui │ │ │ │ └── topup_success_screen.dart │ │ └── wallet_list │ │ │ ├── bloc │ │ │ ├── wallet_bloc.dart │ │ │ ├── wallet_event.dart │ │ │ └── wallet_state.dart │ │ │ └── ui │ │ │ └── wallet_screen.dart │ └── your_profile │ │ ├── bloc │ │ ├── your_profile_bloc.dart │ │ ├── your_profile_event.dart │ │ └── your_profile_state.dart │ │ └── ui │ │ └── your_profile_screen.dart └── utils │ ├── marker.dart │ └── silver_delegate.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ └── Release.entitlements └── RunnerTests │ └── RunnerTests.swift ├── pubspec.lock ├── pubspec.yaml ├── screenshot └── coffee_shop.png ├── test └── widget_test.dart ├── web ├── favicon.png ├── icons │ ├── Icon-192.png │ ├── Icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json └── windows ├── .gitignore ├── CMakeLists.txt ├── flutter ├── CMakeLists.txt ├── generated_plugin_registrant.cc ├── generated_plugin_registrant.h └── generated_plugins.cmake └── runner ├── CMakeLists.txt ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── resources └── app_icon.ico ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/coffeshop/coffeeshopapp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/app/src/main/kotlin/com/coffeshop/coffeeshopapp/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/dark_map_style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/dark_map_style.json -------------------------------------------------------------------------------- /assets/images/background_girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/background_girl.jpg -------------------------------------------------------------------------------- /assets/images/coffee_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/coffee_1.jpg -------------------------------------------------------------------------------- /assets/images/coffee_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/coffee_2.jpg -------------------------------------------------------------------------------- /assets/images/coffee_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/coffee_3.jpg -------------------------------------------------------------------------------- /assets/images/coffee_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/coffee_4.jpg -------------------------------------------------------------------------------- /assets/images/coffee_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/coffee_5.jpg -------------------------------------------------------------------------------- /assets/images/coffee_mug_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/coffee_mug_green.png -------------------------------------------------------------------------------- /assets/images/coffee_mug_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/coffee_mug_grey.png -------------------------------------------------------------------------------- /assets/images/get_started_girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/get_started_girl.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/map_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/map_marker.png -------------------------------------------------------------------------------- /assets/images/offer_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/offer_1.jpg -------------------------------------------------------------------------------- /assets/images/offer_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/offer_2.jpg -------------------------------------------------------------------------------- /assets/images/offer_3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/offer_3.jpeg -------------------------------------------------------------------------------- /assets/images/restaurant_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/restaurant_1.jpg -------------------------------------------------------------------------------- /assets/images/restaurant_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/restaurant_2.jpg -------------------------------------------------------------------------------- /assets/images/restaurant_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/restaurant_3.jpg -------------------------------------------------------------------------------- /assets/images/restaurant_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/restaurant_4.jpg -------------------------------------------------------------------------------- /assets/images/restaurant_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/images/restaurant_5.jpg -------------------------------------------------------------------------------- /assets/vectors/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/apple.svg -------------------------------------------------------------------------------- /assets/vectors/arrow_back_main.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/arrow_back_main.svg -------------------------------------------------------------------------------- /assets/vectors/arrow_green_fill_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/arrow_green_fill_right.svg -------------------------------------------------------------------------------- /assets/vectors/arrow_green_left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/arrow_green_left.svg -------------------------------------------------------------------------------- /assets/vectors/call_icon_details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/call_icon_details.svg -------------------------------------------------------------------------------- /assets/vectors/cart_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/cart_home.svg -------------------------------------------------------------------------------- /assets/vectors/chat_microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/chat_microphone.svg -------------------------------------------------------------------------------- /assets/vectors/chat_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/chat_selected.svg -------------------------------------------------------------------------------- /assets/vectors/chat_unselected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/chat_unselected.svg -------------------------------------------------------------------------------- /assets/vectors/check_circle_green_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/check_circle_green_fill.svg -------------------------------------------------------------------------------- /assets/vectors/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/clock.svg -------------------------------------------------------------------------------- /assets/vectors/cold_coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/cold_coffee.svg -------------------------------------------------------------------------------- /assets/vectors/delete_account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/delete_account.svg -------------------------------------------------------------------------------- /assets/vectors/discover_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/discover_selected.svg -------------------------------------------------------------------------------- /assets/vectors/discover_unselected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/discover_unselected.svg -------------------------------------------------------------------------------- /assets/vectors/edit_icon_select_image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/edit_icon_select_image.svg -------------------------------------------------------------------------------- /assets/vectors/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/facebook.svg -------------------------------------------------------------------------------- /assets/vectors/favourite_grey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/favourite_grey.svg -------------------------------------------------------------------------------- /assets/vectors/favourite_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/favourite_red.svg -------------------------------------------------------------------------------- /assets/vectors/filter_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/filter_green.svg -------------------------------------------------------------------------------- /assets/vectors/filter_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/filter_white.svg -------------------------------------------------------------------------------- /assets/vectors/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/google.svg -------------------------------------------------------------------------------- /assets/vectors/gps_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/gps_fill.svg -------------------------------------------------------------------------------- /assets/vectors/home_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/home_selected.svg -------------------------------------------------------------------------------- /assets/vectors/home_unselected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/home_unselected.svg -------------------------------------------------------------------------------- /assets/vectors/hot_coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/hot_coffee.svg -------------------------------------------------------------------------------- /assets/vectors/icon_share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/icon_share.svg -------------------------------------------------------------------------------- /assets/vectors/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/link.svg -------------------------------------------------------------------------------- /assets/vectors/location_icon_cart_page.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/location_icon_cart_page.svg -------------------------------------------------------------------------------- /assets/vectors/map_point_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/map_point_green.svg -------------------------------------------------------------------------------- /assets/vectors/map_point_yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/map_point_yellow.svg -------------------------------------------------------------------------------- /assets/vectors/menu_logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/menu_logout.svg -------------------------------------------------------------------------------- /assets/vectors/menu_orders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/menu_orders.svg -------------------------------------------------------------------------------- /assets/vectors/menu_points.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/menu_points.svg -------------------------------------------------------------------------------- /assets/vectors/menu_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/menu_settings.svg -------------------------------------------------------------------------------- /assets/vectors/menu_user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/menu_user.svg -------------------------------------------------------------------------------- /assets/vectors/message_icon_details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/message_icon_details.svg -------------------------------------------------------------------------------- /assets/vectors/minus_white_square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/minus_white_square.svg -------------------------------------------------------------------------------- /assets/vectors/my_coupens.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/my_coupens.svg -------------------------------------------------------------------------------- /assets/vectors/my_wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/my_wallet.svg -------------------------------------------------------------------------------- /assets/vectors/notification_bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/notification_bell.svg -------------------------------------------------------------------------------- /assets/vectors/notification_bell_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/notification_bell_white.svg -------------------------------------------------------------------------------- /assets/vectors/notification_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/notification_settings.svg -------------------------------------------------------------------------------- /assets/vectors/password_manager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/password_manager.svg -------------------------------------------------------------------------------- /assets/vectors/password_not_visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/password_not_visible.svg -------------------------------------------------------------------------------- /assets/vectors/password_visible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/password_visible.svg -------------------------------------------------------------------------------- /assets/vectors/payment_methods.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/payment_methods.svg -------------------------------------------------------------------------------- /assets/vectors/play_audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/play_audio.svg -------------------------------------------------------------------------------- /assets/vectors/plus_circle_green_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/plus_circle_green_fill.svg -------------------------------------------------------------------------------- /assets/vectors/plus_square_green_fill_checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/plus_square_green_fill_checkbox.svg -------------------------------------------------------------------------------- /assets/vectors/round_user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/round_user.svg -------------------------------------------------------------------------------- /assets/vectors/search_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/search_green.svg -------------------------------------------------------------------------------- /assets/vectors/shop_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/shop_icon.svg -------------------------------------------------------------------------------- /assets/vectors/shopping_bag_details.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/shopping_bag_details.svg -------------------------------------------------------------------------------- /assets/vectors/three_dots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/three_dots.svg -------------------------------------------------------------------------------- /assets/vectors/user_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/user_selected.svg -------------------------------------------------------------------------------- /assets/vectors/user_unselected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/user_unselected.svg -------------------------------------------------------------------------------- /assets/vectors/wishlist_selected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/wishlist_selected.svg -------------------------------------------------------------------------------- /assets/vectors/wishlist_unselected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/assets/vectors/wishlist_unselected.svg -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/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/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/appview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/appview.dart -------------------------------------------------------------------------------- /lib/common/common_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/common/common_bloc.dart -------------------------------------------------------------------------------- /lib/common/common_bloc/application_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/common/common_bloc/application_bloc.dart -------------------------------------------------------------------------------- /lib/common/common_bloc/application_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/common/common_bloc/application_event.dart -------------------------------------------------------------------------------- /lib/common/common_bloc/application_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/common/common_bloc/application_state.dart -------------------------------------------------------------------------------- /lib/common/common_bloc/bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/common/common_bloc/bloc.dart -------------------------------------------------------------------------------- /lib/common/simple_bloc_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/common/simple_bloc_observer.dart -------------------------------------------------------------------------------- /lib/core/application.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/core/application.dart -------------------------------------------------------------------------------- /lib/core/configs/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/core/configs/routes.dart -------------------------------------------------------------------------------- /lib/core/configs/size_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/core/configs/size_config.dart -------------------------------------------------------------------------------- /lib/core/configs/theme/app_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/core/configs/theme/app_colors.dart -------------------------------------------------------------------------------- /lib/core/configs/theme/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/core/configs/theme/app_theme.dart -------------------------------------------------------------------------------- /lib/core/configs/theme/assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/core/configs/theme/assets.dart -------------------------------------------------------------------------------- /lib/core/configs/theme/strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/core/configs/theme/strings.dart -------------------------------------------------------------------------------- /lib/data/active_order_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/active_order_data.dart -------------------------------------------------------------------------------- /lib/data/add_money_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/add_money_data.dart -------------------------------------------------------------------------------- /lib/data/address_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/address_data.dart -------------------------------------------------------------------------------- /lib/data/banner_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/banner_data.dart -------------------------------------------------------------------------------- /lib/data/cancel_reasons_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/cancel_reasons_data.dart -------------------------------------------------------------------------------- /lib/data/cart_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/cart_data.dart -------------------------------------------------------------------------------- /lib/data/coupon_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/coupon_data.dart -------------------------------------------------------------------------------- /lib/data/feature_products.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/feature_products.dart -------------------------------------------------------------------------------- /lib/data/notification_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/notification_data.dart -------------------------------------------------------------------------------- /lib/data/restaurant_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/restaurant_data.dart -------------------------------------------------------------------------------- /lib/data/wallet_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/data/wallet_data.dart -------------------------------------------------------------------------------- /lib/domain/repository/location_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/domain/repository/location_repository.dart -------------------------------------------------------------------------------- /lib/domain/repository/notification_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/domain/repository/notification_repository.dart -------------------------------------------------------------------------------- /lib/domain/repository/wallet_repository.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/domain/repository/wallet_repository.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/add_address/bloc/add_address_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/add_address/bloc/add_address_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/add_address/bloc/add_address_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/add_address/bloc/add_address_event.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/add_address/bloc/add_address_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/add_address/bloc/add_address_state.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/add_address/ui/add_address_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/add_address/ui/add_address_screen.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/delivery_address_list/bloc/delivery_address_list_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/delivery_address_list/bloc/delivery_address_list_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/delivery_address_list/bloc/delivery_address_list_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/delivery_address_list/bloc/delivery_address_list_event.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/delivery_address_list/bloc/delivery_address_list_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/delivery_address_list/bloc/delivery_address_list_state.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/delivery_address_list/models/address_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/delivery_address_list/models/address_model.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/delivery_address_list/ui/delivery_address_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/delivery_address_list/ui/delivery_address_list_screen.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/enter_your_location/bloc/enter_your_location_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/enter_your_location/bloc/enter_your_location_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/enter_your_location/bloc/enter_your_location_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/enter_your_location/bloc/enter_your_location_event.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/enter_your_location/bloc/enter_your_location_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/enter_your_location/bloc/enter_your_location_state.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/enter_your_location/ui/enter_your_location_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/enter_your_location/ui/enter_your_location_screen.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/enter_your_location/widgets/address_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/enter_your_location/widgets/address_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/enter_your_location/widgets/searchFieldWidget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/enter_your_location/widgets/searchFieldWidget.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/get_direction/bloc/get_direction_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/get_direction/bloc/get_direction_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/get_direction/bloc/get_direction_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/get_direction/bloc/get_direction_event.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/get_direction/bloc/get_direction_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/get_direction/bloc/get_direction_state.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/get_direction/ui/get_direction_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/get_direction/ui/get_direction_screen.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/manage_address/bloc/manage_address_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/manage_address/bloc/manage_address_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/manage_address/bloc/manage_address_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/manage_address/bloc/manage_address_event.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/manage_address/bloc/manage_address_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/manage_address/bloc/manage_address_state.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/manage_address/ui/manage_address_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/manage_address/ui/manage_address_screen.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/track_live_location/bloc/track_live_location_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/track_live_location/bloc/track_live_location_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/track_live_location/bloc/track_live_location_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/track_live_location/bloc/track_live_location_event.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/track_live_location/bloc/track_live_location_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/track_live_location/bloc/track_live_location_state.dart -------------------------------------------------------------------------------- /lib/presentation/address_map/track_live_location/ui/track_live_location_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/address_map/track_live_location/ui/track_live_location_screen.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/change_password/bloc/change_password_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/change_password/bloc/change_password_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/change_password/bloc/change_password_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/change_password/bloc/change_password_event.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/change_password/bloc/change_password_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/change_password/bloc/change_password_state.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/change_password/ui/change_password.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/change_password/ui/change_password.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/complete_profile/bloc/complete_profile_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/complete_profile/bloc/complete_profile_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/complete_profile/bloc/complete_profile_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/complete_profile/bloc/complete_profile_event.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/complete_profile/bloc/complete_profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/complete_profile/bloc/complete_profile_state.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/complete_profile/ui/complete_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/complete_profile/ui/complete_profile.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/login/bloc/login_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/login/bloc/login_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/login/bloc/login_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/login/bloc/login_event.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/login/bloc/login_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/login/bloc/login_state.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/login/ui/login.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/login/ui/login.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/otp/bloc/otp_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/otp/bloc/otp_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/otp/bloc/otp_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/otp/bloc/otp_event.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/otp/bloc/otp_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/otp/bloc/otp_state.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/otp/ui/otp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/otp/ui/otp.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/reset_password/bloc/reset_password_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/reset_password/bloc/reset_password_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/reset_password/bloc/reset_password_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/reset_password/bloc/reset_password_event.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/reset_password/bloc/reset_password_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/reset_password/bloc/reset_password_state.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/reset_password/ui/reset_password.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/reset_password/ui/reset_password.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/signup/bloc/signup_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/signup/bloc/signup_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/signup/bloc/signup_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/signup/bloc/signup_event.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/signup/bloc/signup_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/signup/bloc/signup_state.dart -------------------------------------------------------------------------------- /lib/presentation/auth/pages/signup/ui/signup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/pages/signup/ui/signup.dart -------------------------------------------------------------------------------- /lib/presentation/auth/widgets/SocialWidget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/widgets/SocialWidget.dart -------------------------------------------------------------------------------- /lib/presentation/auth/widgets/gender_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/widgets/gender_widget.dart -------------------------------------------------------------------------------- /lib/presentation/auth/widgets/or_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/widgets/or_widget.dart -------------------------------------------------------------------------------- /lib/presentation/auth/widgets/phone_coutry_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/widgets/phone_coutry_field.dart -------------------------------------------------------------------------------- /lib/presentation/auth/widgets/social_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/widgets/social_row.dart -------------------------------------------------------------------------------- /lib/presentation/auth/widgets/textFieldWidget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/auth/widgets/textFieldWidget.dart -------------------------------------------------------------------------------- /lib/presentation/cart/bloc/cart_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/cart/bloc/cart_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/cart/bloc/cart_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/cart/bloc/cart_event.dart -------------------------------------------------------------------------------- /lib/presentation/cart/bloc/cart_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/cart/bloc/cart_state.dart -------------------------------------------------------------------------------- /lib/presentation/cart/models/cart_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/cart/models/cart_model.dart -------------------------------------------------------------------------------- /lib/presentation/cart/ui/cart_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/cart/ui/cart_screen.dart -------------------------------------------------------------------------------- /lib/presentation/cart/widgets/bill_items.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/cart/widgets/bill_items.dart -------------------------------------------------------------------------------- /lib/presentation/cart/widgets/cart_plus_minus_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/cart/widgets/cart_plus_minus_widget.dart -------------------------------------------------------------------------------- /lib/presentation/cart/widgets/item_remove_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/cart/widgets/item_remove_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/presentation/coupons/bloc/coupons_list_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/coupons/bloc/coupons_list_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/coupons/bloc/coupons_list_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/coupons/bloc/coupons_list_event.dart -------------------------------------------------------------------------------- /lib/presentation/coupons/bloc/coupons_list_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/coupons/bloc/coupons_list_state.dart -------------------------------------------------------------------------------- /lib/presentation/coupons/models/coupons_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/coupons/models/coupons_model.dart -------------------------------------------------------------------------------- /lib/presentation/coupons/ui/coupons_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/coupons/ui/coupons_list_screen.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/cafe_list/bloc/cafe_list_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/cafe_list/bloc/cafe_list_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/cafe_list/bloc/cafe_list_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/cafe_list/bloc/cafe_list_event.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/cafe_list/bloc/cafe_list_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/cafe_list/bloc/cafe_list_state.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/cafe_list/ui/cafe_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/cafe_list/ui/cafe_list_screen.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/chat/bloc/chat_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/chat/bloc/chat_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/chat/bloc/chat_event.dart: -------------------------------------------------------------------------------- 1 | part of 'chat_bloc.dart'; 2 | 3 | @immutable 4 | sealed class ChatEvent {} 5 | -------------------------------------------------------------------------------- /lib/presentation/dashboard/chat/bloc/chat_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/chat/bloc/chat_state.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/chat/ui/chat_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/chat/ui/chat_screen.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/coffee_list/bloc/coffee_list_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/coffee_list/bloc/coffee_list_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/coffee_list/bloc/coffee_list_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/coffee_list/bloc/coffee_list_event.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/coffee_list/bloc/coffee_list_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/coffee_list/bloc/coffee_list_state.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/coffee_list/ui/coffee_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/coffee_list/ui/coffee_list_screen.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/dashboard_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/dashboard_view.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/discover/bloc/discover_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/discover/bloc/discover_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/discover/bloc/discover_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/discover/bloc/discover_event.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/discover/bloc/discover_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/discover/bloc/discover_state.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/discover/ui/discover_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/discover/ui/discover_screen.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/home/bloc/home_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/home/bloc/home_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/home/bloc/home_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/home/bloc/home_event.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/home/bloc/home_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/home/bloc/home_state.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/home/models/banner_data_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/home/models/banner_data_model.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/home/models/product_data_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/home/models/product_data_model.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/home/models/restaurant_data_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/home/models/restaurant_data_model.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/home/ui/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/home/ui/home_screen.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/navbar_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/navbar_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/navbar_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/navbar_event.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/navbar_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/navbar_state.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/profile/bloc/profile_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/profile/bloc/profile_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/profile/bloc/profile_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/profile/bloc/profile_event.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/profile/bloc/profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/profile/bloc/profile_state.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/profile/ui/profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/profile/ui/profile_screen.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/profile/widgets/logout_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/profile/widgets/logout_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/profile/widgets/profile_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/profile/widgets/profile_item.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/widgets/animated_dot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/widgets/animated_dot.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/widgets/home_top_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/widgets/home_top_widget.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/widgets/item_plus_minus_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/widgets/item_plus_minus_widget.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/widgets/restaurant_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/widgets/restaurant_item.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/widgets/searchTextField.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/widgets/searchTextField.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/wishlist/bloc/wishlist_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/wishlist/bloc/wishlist_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/wishlist/bloc/wishlist_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/wishlist/bloc/wishlist_event.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/wishlist/bloc/wishlist_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/wishlist/bloc/wishlist_state.dart -------------------------------------------------------------------------------- /lib/presentation/dashboard/wishlist/ui/wishlist_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/dashboard/wishlist/ui/wishlist_screen.dart -------------------------------------------------------------------------------- /lib/presentation/intro/bloc/get_started_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/intro/bloc/get_started_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/intro/bloc/get_started_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/intro/bloc/get_started_event.dart -------------------------------------------------------------------------------- /lib/presentation/intro/bloc/get_started_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/intro/bloc/get_started_state.dart -------------------------------------------------------------------------------- /lib/presentation/intro/ui/get_started.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/intro/ui/get_started.dart -------------------------------------------------------------------------------- /lib/presentation/intro/widgets/curved_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/intro/widgets/curved_container.dart -------------------------------------------------------------------------------- /lib/presentation/item_details/bloc/item_details_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/item_details/bloc/item_details_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/item_details/bloc/item_details_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/item_details/bloc/item_details_event.dart -------------------------------------------------------------------------------- /lib/presentation/item_details/bloc/item_details_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/item_details/bloc/item_details_state.dart -------------------------------------------------------------------------------- /lib/presentation/item_details/models/coffee_type_data_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/item_details/models/coffee_type_data_model.dart -------------------------------------------------------------------------------- /lib/presentation/item_details/ui/item_details.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/item_details/ui/item_details.dart -------------------------------------------------------------------------------- /lib/presentation/item_details/widgets/add_to_cart_bottom_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/item_details/widgets/add_to_cart_bottom_view.dart -------------------------------------------------------------------------------- /lib/presentation/item_details/widgets/expandable_text.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/item_details/widgets/expandable_text.dart -------------------------------------------------------------------------------- /lib/presentation/item_details/widgets/owner_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/item_details/widgets/owner_widget.dart -------------------------------------------------------------------------------- /lib/presentation/notification/bloc/notification_list_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/notification/bloc/notification_list_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/notification/bloc/notification_list_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/notification/bloc/notification_list_event.dart -------------------------------------------------------------------------------- /lib/presentation/notification/bloc/notification_list_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/notification/bloc/notification_list_state.dart -------------------------------------------------------------------------------- /lib/presentation/notification/models/notification_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/notification/models/notification_model.dart -------------------------------------------------------------------------------- /lib/presentation/notification/ui/notification_list_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/notification/ui/notification_list_screen.dart -------------------------------------------------------------------------------- /lib/presentation/order/cancel_order/bloc/cancel_order_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/cancel_order/bloc/cancel_order_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/order/cancel_order/bloc/cancel_order_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/cancel_order/bloc/cancel_order_event.dart -------------------------------------------------------------------------------- /lib/presentation/order/cancel_order/bloc/cancel_order_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/cancel_order/bloc/cancel_order_state.dart -------------------------------------------------------------------------------- /lib/presentation/order/cancel_order/ui/cancel_order_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/cancel_order/ui/cancel_order_screen.dart -------------------------------------------------------------------------------- /lib/presentation/order/e_receipt/bloc/e_receipt_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/e_receipt/bloc/e_receipt_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/order/e_receipt/bloc/e_receipt_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/e_receipt/bloc/e_receipt_event.dart -------------------------------------------------------------------------------- /lib/presentation/order/e_receipt/bloc/e_receipt_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/e_receipt/bloc/e_receipt_state.dart -------------------------------------------------------------------------------- /lib/presentation/order/e_receipt/ui/e_receipt_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/e_receipt/ui/e_receipt_screen.dart -------------------------------------------------------------------------------- /lib/presentation/order/models/orders_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/models/orders_model.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/bloc/my_orders_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/bloc/my_orders_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/bloc/my_orders_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/bloc/my_orders_event.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/bloc/my_orders_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/bloc/my_orders_state.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/active_orders/bloc/active_orders_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/active_orders/bloc/active_orders_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/active_orders/bloc/active_orders_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/active_orders/bloc/active_orders_event.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/active_orders/bloc/active_orders_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/active_orders/bloc/active_orders_state.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/active_orders/ui/active_orders_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/active_orders/ui/active_orders_screen.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/cancelled_orders/bloc/cancelled_orders_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/cancelled_orders/bloc/cancelled_orders_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/cancelled_orders/bloc/cancelled_orders_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/cancelled_orders/bloc/cancelled_orders_event.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/cancelled_orders/bloc/cancelled_orders_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/cancelled_orders/bloc/cancelled_orders_state.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/cancelled_orders/ui/cancelled_orders_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/cancelled_orders/ui/cancelled_orders_screen.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/completed_orders/bloc/completed_orders_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/completed_orders/bloc/completed_orders_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/completed_orders/bloc/completed_orders_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/completed_orders/bloc/completed_orders_event.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/completed_orders/bloc/completed_orders_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/completed_orders/bloc/completed_orders_state.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/tabs/completed_orders/ui/completed_orders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/tabs/completed_orders/ui/completed_orders.dart -------------------------------------------------------------------------------- /lib/presentation/order/my_orders/ui/my_orders_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/my_orders/ui/my_orders_screen.dart -------------------------------------------------------------------------------- /lib/presentation/order/order_placed/bloc/order_placed_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/order_placed/bloc/order_placed_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/order/order_placed/bloc/order_placed_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/order_placed/bloc/order_placed_event.dart -------------------------------------------------------------------------------- /lib/presentation/order/order_placed/bloc/order_placed_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/order_placed/bloc/order_placed_state.dart -------------------------------------------------------------------------------- /lib/presentation/order/order_placed/ui/order_placed_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/order_placed/ui/order_placed_screen.dart -------------------------------------------------------------------------------- /lib/presentation/order/pickup_location/bloc/pickup_location_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/pickup_location/bloc/pickup_location_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/order/pickup_location/bloc/pickup_location_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/pickup_location/bloc/pickup_location_event.dart -------------------------------------------------------------------------------- /lib/presentation/order/pickup_location/bloc/pickup_location_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/pickup_location/bloc/pickup_location_state.dart -------------------------------------------------------------------------------- /lib/presentation/order/pickup_location/ui/pickup_location_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/pickup_location/ui/pickup_location_screen.dart -------------------------------------------------------------------------------- /lib/presentation/order/review_summary/bloc/review_summary_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/review_summary/bloc/review_summary_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/order/review_summary/bloc/review_summary_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/review_summary/bloc/review_summary_event.dart -------------------------------------------------------------------------------- /lib/presentation/order/review_summary/bloc/review_summary_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/review_summary/bloc/review_summary_state.dart -------------------------------------------------------------------------------- /lib/presentation/order/review_summary/ui/review_summary.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/review_summary/ui/review_summary.dart -------------------------------------------------------------------------------- /lib/presentation/order/track_order/bloc/track_order_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/track_order/bloc/track_order_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/order/track_order/bloc/track_order_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/track_order/bloc/track_order_event.dart -------------------------------------------------------------------------------- /lib/presentation/order/track_order/bloc/track_order_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/track_order/bloc/track_order_state.dart -------------------------------------------------------------------------------- /lib/presentation/order/track_order/ui/track_order_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/order/track_order/ui/track_order_screen.dart -------------------------------------------------------------------------------- /lib/presentation/permission/location_permission/bloc/location_permission_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/permission/location_permission/bloc/location_permission_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/permission/location_permission/bloc/location_permission_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/permission/location_permission/bloc/location_permission_event.dart -------------------------------------------------------------------------------- /lib/presentation/permission/location_permission/bloc/location_permission_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/permission/location_permission/bloc/location_permission_state.dart -------------------------------------------------------------------------------- /lib/presentation/permission/location_permission/ui/location_permission.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/permission/location_permission/ui/location_permission.dart -------------------------------------------------------------------------------- /lib/presentation/permission/notification_permission/bloc/notification_permission_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/permission/notification_permission/bloc/notification_permission_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/permission/notification_permission/bloc/notification_permission_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/permission/notification_permission/bloc/notification_permission_event.dart -------------------------------------------------------------------------------- /lib/presentation/permission/notification_permission/bloc/notification_permission_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/permission/notification_permission/bloc/notification_permission_state.dart -------------------------------------------------------------------------------- /lib/presentation/permission/notification_permission/ui/notification_permission.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/permission/notification_permission/ui/notification_permission.dart -------------------------------------------------------------------------------- /lib/presentation/qr_code/bloc/qr_scan_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/qr_code/bloc/qr_scan_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/qr_code/bloc/qr_scan_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/qr_code/bloc/qr_scan_event.dart -------------------------------------------------------------------------------- /lib/presentation/qr_code/bloc/qr_scan_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/qr_code/bloc/qr_scan_state.dart -------------------------------------------------------------------------------- /lib/presentation/qr_code/ui/qr_scan_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/qr_code/ui/qr_scan_screen.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/bloc/restaurant_details_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/bloc/restaurant_details_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/bloc/restaurant_details_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/bloc/restaurant_details_event.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/bloc/restaurant_details_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/bloc/restaurant_details_state.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/detail_circle_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/detail_circle_card.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/about/bloc/about_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/about/bloc/about_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/about/bloc/about_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/about/bloc/about_event.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/about/bloc/about_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/about/bloc/about_state.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/about/ui/about_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/about/ui/about_screen.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/gallery/bloc/gallery_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/gallery/bloc/gallery_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/gallery/bloc/gallery_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/gallery/bloc/gallery_event.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/gallery/bloc/gallery_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/gallery/bloc/gallery_state.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/gallery/ui/gallery_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/gallery/ui/gallery_screen.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/menu/bloc/menu_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/menu/bloc/menu_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/menu/bloc/menu_event.dart: -------------------------------------------------------------------------------- 1 | part of 'menu_bloc.dart'; 2 | 3 | @immutable 4 | sealed class MenuEvent {} 5 | -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/menu/bloc/menu_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/menu/bloc/menu_state.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/menu/ui/menu_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/menu/ui/menu_screen.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/reviews/bloc/reviews_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/reviews/bloc/reviews_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/reviews/bloc/reviews_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/reviews/bloc/reviews_event.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/reviews/bloc/reviews_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/reviews/bloc/reviews_state.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/tabs/reviews/ui/reviews_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/tabs/reviews/ui/reviews_screen.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/ui/restaurant_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/ui/restaurant_details_screen.dart -------------------------------------------------------------------------------- /lib/presentation/restaurant_details/widgets/review_list_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/restaurant_details/widgets/review_list_widget.dart -------------------------------------------------------------------------------- /lib/presentation/review/add_delivery_review/bloc/add_delivery_review_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/add_delivery_review/bloc/add_delivery_review_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/review/add_delivery_review/bloc/add_delivery_review_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/add_delivery_review/bloc/add_delivery_review_event.dart -------------------------------------------------------------------------------- /lib/presentation/review/add_delivery_review/bloc/add_delivery_review_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/add_delivery_review/bloc/add_delivery_review_state.dart -------------------------------------------------------------------------------- /lib/presentation/review/add_delivery_review/ui/add_delivey_review_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/add_delivery_review/ui/add_delivey_review_screen.dart -------------------------------------------------------------------------------- /lib/presentation/review/add_review/bloc/add_review_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/add_review/bloc/add_review_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/review/add_review/bloc/add_review_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/add_review/bloc/add_review_event.dart -------------------------------------------------------------------------------- /lib/presentation/review/add_review/bloc/add_review_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/add_review/bloc/add_review_state.dart -------------------------------------------------------------------------------- /lib/presentation/review/add_review/ui/add_review_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/add_review/ui/add_review_screen.dart -------------------------------------------------------------------------------- /lib/presentation/review/total_reviews/bloc/total_reviews_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/total_reviews/bloc/total_reviews_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/review/total_reviews/bloc/total_reviews_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/total_reviews/bloc/total_reviews_event.dart -------------------------------------------------------------------------------- /lib/presentation/review/total_reviews/bloc/total_reviews_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/total_reviews/bloc/total_reviews_state.dart -------------------------------------------------------------------------------- /lib/presentation/review/total_reviews/ui/total_reviews_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/review/total_reviews/ui/total_reviews_screen.dart -------------------------------------------------------------------------------- /lib/presentation/settings/bloc/settings_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/settings/bloc/settings_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/settings/bloc/settings_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/settings/bloc/settings_event.dart -------------------------------------------------------------------------------- /lib/presentation/settings/bloc/settings_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/settings/bloc/settings_state.dart -------------------------------------------------------------------------------- /lib/presentation/settings/ui/settings_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/settings/ui/settings_screen.dart -------------------------------------------------------------------------------- /lib/presentation/splash/ui/splash.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/splash/ui/splash.dart -------------------------------------------------------------------------------- /lib/presentation/splash/widgets/common_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/splash/widgets/common_button.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/add_money/bloc/add_money_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/add_money/bloc/add_money_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/add_money/bloc/add_money_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/add_money/bloc/add_money_event.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/add_money/bloc/add_money_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/add_money/bloc/add_money_state.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/add_money/ui/add_money_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/add_money/ui/add_money_screen.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/topup_success/bloc/topup_success_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/topup_success/bloc/topup_success_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/topup_success/bloc/topup_success_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/topup_success/bloc/topup_success_event.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/topup_success/bloc/topup_success_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/topup_success/bloc/topup_success_state.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/topup_success/ui/topup_success_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/topup_success/ui/topup_success_screen.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/wallet_list/bloc/wallet_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/wallet_list/bloc/wallet_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/wallet_list/bloc/wallet_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/wallet_list/bloc/wallet_event.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/wallet_list/bloc/wallet_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/wallet_list/bloc/wallet_state.dart -------------------------------------------------------------------------------- /lib/presentation/wallet/wallet_list/ui/wallet_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/wallet/wallet_list/ui/wallet_screen.dart -------------------------------------------------------------------------------- /lib/presentation/your_profile/bloc/your_profile_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/your_profile/bloc/your_profile_bloc.dart -------------------------------------------------------------------------------- /lib/presentation/your_profile/bloc/your_profile_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/your_profile/bloc/your_profile_event.dart -------------------------------------------------------------------------------- /lib/presentation/your_profile/bloc/your_profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/your_profile/bloc/your_profile_state.dart -------------------------------------------------------------------------------- /lib/presentation/your_profile/ui/your_profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/presentation/your_profile/ui/your_profile_screen.dart -------------------------------------------------------------------------------- /lib/utils/marker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/utils/marker.dart -------------------------------------------------------------------------------- /lib/utils/silver_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/lib/utils/silver_delegate.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /screenshot/coffee_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/screenshot/coffee_shop.png -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/web/manifest.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chetanvaghela457/cafeteria_full_ecommerce_app_flutter/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------