├── .env.dev ├── .env.prod ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle │ ├── google-services.json │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── asroo_store │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── android12splash.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-mdpi │ │ │ ├── android12splash.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-night-hdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-mdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xxhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-night-xxxhdpi │ │ │ └── android12splash.png │ │ │ ├── drawable-v21 │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── android12splash.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── android12splash.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── android12splash.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── splash.png │ │ │ ├── drawable │ │ │ ├── background.png │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.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-v31 │ │ │ └── styles.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-v31 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle ├── assets ├── fonts │ ├── arabic │ │ └── cairo │ │ │ ├── Cairo-Bold.ttf │ │ │ ├── Cairo-Medium.ttf │ │ │ └── Cairo-Regular.ttf │ └── english │ │ └── poppins │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-Medium.ttf │ │ └── Poppins-Regular.ttf ├── icons │ └── app_icon.jpg ├── images │ ├── admin │ │ ├── categories_drawer.png │ │ ├── drawer_image.png │ │ ├── products_drawer.png │ │ └── users_drawer.png │ ├── core │ │ ├── dark_test_image.png │ │ ├── empty_screen.png │ │ ├── light_test_image.png │ │ ├── no_network.jpg │ │ ├── page_under_build.jpg │ │ ├── splash_android_12.png │ │ └── splash_ios_android_11.png │ └── customer │ │ ├── big_nav_bar_dark.png │ │ ├── big_nav_bar_light.png │ │ ├── home_bg_dark.png │ │ ├── home_bg_light.png │ │ └── user.png └── svg │ ├── arrow_back.svg │ ├── build_developer.svg │ ├── build_version.svg │ ├── car_shop.svg │ ├── categories_tap_icon.svg │ ├── dark_mode.svg │ ├── favourite_tab_icon.svg │ ├── home_tab_icon.svg │ ├── language.svg │ ├── logout.svg │ ├── notification_icon.svg │ ├── play_store_512.png │ ├── profile_tab_icon.svg │ └── search.svg ├── flutter_native_splash.yaml ├── ios ├── .gitignore ├── Flutter │ ├── AppFrameworkInfo.plist │ ├── Debug.xcconfig │ └── Release.xcconfig ├── Podfile ├── Podfile.lock ├── 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-50x50@1x.png │ │ │ ├── Icon-App-50x50@2x.png │ │ │ ├── Icon-App-57x57@1x.png │ │ │ ├── Icon-App-57x57@2x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-72x72@1x.png │ │ │ ├── Icon-App-72x72@2x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ ├── LaunchBackground.imageset │ │ │ ├── Contents.json │ │ │ └── background.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── GoogleService-Info.plist │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── lang ├── ar.json └── en.json ├── lib ├── asroo_store_app.dart ├── core │ ├── app │ │ ├── app_cubit │ │ │ ├── app_cubit.dart │ │ │ ├── app_cubit.freezed.dart │ │ │ └── app_state.dart │ │ ├── bloc_observer.dart │ │ ├── connectivity_controller.dart │ │ ├── env.variables.dart │ │ ├── share │ │ │ ├── share_cubit.dart │ │ │ ├── share_cubit.freezed.dart │ │ │ └── share_state.dart │ │ └── upload_image │ │ │ ├── cubit │ │ │ ├── upload_image_cubit.dart │ │ │ ├── upload_image_cubit.freezed.dart │ │ │ └── upload_image_state.dart │ │ │ ├── data_source │ │ │ └── upload_image_data_source.dart │ │ │ ├── model │ │ │ ├── upload_image_response.dart │ │ │ └── upload_image_response.g.dart │ │ │ └── repo │ │ │ └── upload_image_repo.dart │ ├── common │ │ ├── animations │ │ │ └── animate_do.dart │ │ ├── bottom_shet │ │ │ └── custom_bottom_sheet.dart │ │ ├── dialogs │ │ │ └── custom_dialogs.dart │ │ ├── loading │ │ │ ├── empty_screen.dart │ │ │ └── loading_shimmer.dart │ │ ├── screens │ │ │ ├── custom_web_view.dart │ │ │ ├── no_network_screen.dart │ │ │ └── under_build_screen.dart │ │ ├── toast │ │ │ └── show_toast.dart │ │ └── widgets │ │ │ ├── admin_app_bar.dart │ │ │ ├── custom_button.dart │ │ │ ├── custom_container_linear_admin.dart │ │ │ ├── custom_container_linear_customer.dart │ │ │ ├── custom_drop_down.dart │ │ │ ├── custom_favorite_button.dart │ │ │ ├── custom_linear_button.dart │ │ │ ├── custom_product_item.dart │ │ │ ├── custom_share_button.dart │ │ │ ├── custom_text_field.dart │ │ │ ├── customer_app_bar.dart │ │ │ └── text_app.dart │ ├── di │ │ └── injection_container.dart │ ├── enums │ │ ├── filter_button_enum.dart │ │ └── nav_bar_enum.dart │ ├── extensions │ │ ├── context_extension.dart │ │ ├── date_extension.dart │ │ └── string_exetension.dart │ ├── language │ │ ├── app_localizations.dart │ │ ├── app_localizations_delegate.dart │ │ ├── app_localizations_setup.dart │ │ └── lang_keys.dart │ ├── routes │ │ ├── app_routes.dart │ │ └── base_routes.dart │ ├── service │ │ ├── dynamic_link │ │ │ └── dynamic_link.dart │ │ ├── graphql │ │ │ ├── api_result.dart │ │ │ ├── api_result.freezed.dart │ │ │ ├── api_service.dart │ │ │ ├── api_service.g.dart │ │ │ ├── dio_factory.dart │ │ │ └── qraphql_queries │ │ │ │ ├── admin │ │ │ │ ├── categories_queries.dart │ │ │ │ ├── dashboard_queries.dart │ │ │ │ ├── products_queries.dart │ │ │ │ └── users_queries.dart │ │ │ │ ├── auth │ │ │ │ └── auth_queries.dart │ │ │ │ └── customer │ │ │ │ ├── category_queries.dart │ │ │ │ ├── home_queries.dart │ │ │ │ ├── product_details_queries.dart │ │ │ │ ├── products_view_all_queries.dart │ │ │ │ └── search_queries.dart │ │ ├── hive │ │ │ └── hive_database.dart │ │ ├── push_notification │ │ │ ├── firebase_cloud_messaging.dart │ │ │ ├── firebase_messaging_navigate.dart │ │ │ └── local_notfication_service.dart │ │ └── shared_pref │ │ │ ├── pref_keys.dart │ │ │ └── shared_pref.dart │ ├── style │ │ ├── colors │ │ │ ├── colors_dark.dart │ │ │ └── colors_light.dart │ │ ├── fonts │ │ │ ├── font_family_helper.dart │ │ │ └── font_weight_helper.dart │ │ ├── images │ │ │ └── app_images.dart │ │ └── theme │ │ │ ├── app_theme.dart │ │ │ ├── assets_extension.dart │ │ │ └── color_extension.dart │ └── utils │ │ ├── admin_drawer_list.dart │ │ ├── app_info.dart │ │ ├── app_logout.dart │ │ ├── app_regex.dart │ │ ├── app_strings.dart │ │ ├── app_values.dart │ │ └── image_pick.dart ├── features │ ├── admin │ │ ├── add_categories │ │ │ ├── data │ │ │ │ ├── data_source │ │ │ │ │ └── categories_admin_data_source.dart │ │ │ │ ├── models │ │ │ │ │ ├── create_category_request_body.dart │ │ │ │ │ ├── create_category_request_body.g.dart │ │ │ │ │ ├── create_category_response.dart │ │ │ │ │ ├── create_category_response.g.dart │ │ │ │ │ ├── get_all_categories_reponse.dart │ │ │ │ │ ├── get_all_categories_reponse.g.dart │ │ │ │ │ ├── update_category_request_body.dart │ │ │ │ │ └── update_category_request_body.g.dart │ │ │ │ └── repos │ │ │ │ │ └── categoreis_admin_repos.dart │ │ │ └── presentation │ │ │ │ ├── bloc │ │ │ │ ├── create_category │ │ │ │ │ ├── create_category_bloc.dart │ │ │ │ │ ├── create_category_bloc.freezed.dart │ │ │ │ │ ├── create_category_event.dart │ │ │ │ │ └── create_category_state.dart │ │ │ │ ├── delete_category │ │ │ │ │ ├── delete_category_bloc.dart │ │ │ │ │ ├── delete_category_bloc.freezed.dart │ │ │ │ │ ├── delete_category_event.dart │ │ │ │ │ └── delete_category_state.dart │ │ │ │ ├── get_all_admin_categories │ │ │ │ │ ├── get_all_admin_categories_bloc.dart │ │ │ │ │ ├── get_all_admin_categories_bloc.freezed.dart │ │ │ │ │ ├── get_all_admin_categories_event.dart │ │ │ │ │ └── get_all_admin_categories_state.dart │ │ │ │ └── update_category │ │ │ │ │ ├── update_category_bloc.dart │ │ │ │ │ ├── update_category_bloc.freezed.dart │ │ │ │ │ ├── update_category_event.dart │ │ │ │ │ └── update_category_state.dart │ │ │ │ ├── refactors │ │ │ │ └── add_categories_body.dart │ │ │ │ ├── screens │ │ │ │ └── add_categories_screen.dart │ │ │ │ └── widgets │ │ │ │ ├── add_category_item.dart │ │ │ │ ├── create │ │ │ │ ├── category_upload_image.dart │ │ │ │ ├── create_category.dart │ │ │ │ └── create_category_bottom_widget.dart │ │ │ │ ├── delete │ │ │ │ └── delete_catgeory_widget.dart │ │ │ │ └── update │ │ │ │ ├── update_category_bottom_widget.dart │ │ │ │ └── update_upload_image.dart │ │ ├── add_notifications │ │ │ ├── data │ │ │ │ ├── data_source │ │ │ │ │ └── add_notificaion_data_source.dart │ │ │ │ ├── models │ │ │ │ │ ├── add_notification_model.dart │ │ │ │ │ └── add_notification_model.g.dart │ │ │ │ └── repos │ │ │ │ │ └── add_notification_repo.dart │ │ │ └── presentation │ │ │ │ ├── bloc │ │ │ │ ├── add_notification │ │ │ │ │ ├── add_notification_bloc.dart │ │ │ │ │ ├── add_notification_bloc.freezed.dart │ │ │ │ │ ├── add_notification_event.dart │ │ │ │ │ └── add_notification_state.dart │ │ │ │ ├── get_all_notification_admin │ │ │ │ │ ├── get_all_notification_admin_bloc.dart │ │ │ │ │ ├── get_all_notification_admin_bloc.freezed.dart │ │ │ │ │ ├── get_all_notification_admin_event.dart │ │ │ │ │ └── get_all_notification_admin_state.dart │ │ │ │ └── send_notification │ │ │ │ │ ├── send_notification_bloc.dart │ │ │ │ │ ├── send_notification_bloc.freezed.dart │ │ │ │ │ ├── send_notification_event.dart │ │ │ │ │ └── send_notification_state.dart │ │ │ │ ├── refactors │ │ │ │ └── add_notification_body.dart │ │ │ │ ├── screens │ │ │ │ └── add_notifications_screen.dart │ │ │ │ └── widgets │ │ │ │ ├── add_notification_item.dart │ │ │ │ ├── create │ │ │ │ ├── create_notification.dart │ │ │ │ └── create_notification_bottom_sheet.dart │ │ │ │ ├── delete │ │ │ │ └── delete_notification_widget.dart │ │ │ │ ├── edit │ │ │ │ ├── edit_notification.dart │ │ │ │ └── edit_notification_bottom_sheet.dart │ │ │ │ └── send │ │ │ │ └── send_notification_widget.dart │ │ ├── add_products │ │ │ ├── data │ │ │ │ ├── data_source │ │ │ │ │ └── products_admin_data_source.dart │ │ │ │ ├── models │ │ │ │ │ ├── create_product_request_body.dart │ │ │ │ │ ├── create_product_request_body.g.dart │ │ │ │ │ ├── get_all_product_reponse.dart │ │ │ │ │ ├── get_all_product_reponse.g.dart │ │ │ │ │ ├── update_product_request_body.dart │ │ │ │ │ └── update_product_request_body.g.dart │ │ │ │ └── repos │ │ │ │ │ └── products_admin_repo.dart │ │ │ └── presentation │ │ │ │ ├── bloc │ │ │ │ ├── create_product │ │ │ │ │ ├── create_prodcut_bloc.dart │ │ │ │ │ ├── create_prodcut_bloc.freezed.dart │ │ │ │ │ ├── create_prodcut_event.dart │ │ │ │ │ └── create_prodcut_state.dart │ │ │ │ ├── delete_product │ │ │ │ │ ├── delete_product_bloc.dart │ │ │ │ │ ├── delete_product_bloc.freezed.dart │ │ │ │ │ ├── delete_product_event.dart │ │ │ │ │ └── delete_product_state.dart │ │ │ │ ├── get_all_admin_product │ │ │ │ │ ├── get_all_admin_product_bloc.dart │ │ │ │ │ ├── get_all_admin_product_bloc.freezed.dart │ │ │ │ │ ├── get_all_admin_product_event.dart │ │ │ │ │ └── get_all_admin_product_state.dart │ │ │ │ └── update_product │ │ │ │ │ ├── update_product_bloc.dart │ │ │ │ │ ├── update_product_bloc.freezed.dart │ │ │ │ │ ├── update_product_event.dart │ │ │ │ │ └── update_product_state.dart │ │ │ │ ├── refactors │ │ │ │ └── add_products_body.dart │ │ │ │ ├── screens │ │ │ │ └── add_products_screen.dart │ │ │ │ └── widgets │ │ │ │ ├── create │ │ │ │ ├── create_product.dart │ │ │ │ ├── create_product_bottom_sheet.dart │ │ │ │ └── create_product_images.dart │ │ │ │ ├── delete │ │ │ │ └── delete_product_widget.dart │ │ │ │ ├── product_admin_item.dart │ │ │ │ └── update │ │ │ │ ├── update_product_bottom_sheet.dart │ │ │ │ └── update_product_images.dart │ │ ├── dashboard │ │ │ ├── data │ │ │ │ ├── data_soruce │ │ │ │ │ └── dashboard_data_source.dart │ │ │ │ ├── models │ │ │ │ │ ├── categories_number_response.dart │ │ │ │ │ ├── categories_number_response.g.dart │ │ │ │ │ ├── porducts_number_response.dart │ │ │ │ │ ├── porducts_number_response.g.dart │ │ │ │ │ ├── users_number_response.dart │ │ │ │ │ └── users_number_response.g.dart │ │ │ │ └── repos │ │ │ │ │ └── dashboard_repo.dart │ │ │ └── presentation │ │ │ │ ├── bloc │ │ │ │ ├── categories_number │ │ │ │ │ ├── categories_number_bloc.dart │ │ │ │ │ ├── categories_number_bloc.freezed.dart │ │ │ │ │ ├── categories_number_event.dart │ │ │ │ │ └── categories_number_state.dart │ │ │ │ ├── products_number │ │ │ │ │ ├── products_number_bloc.dart │ │ │ │ │ ├── products_number_bloc.freezed.dart │ │ │ │ │ ├── products_number_event.dart │ │ │ │ │ └── products_number_state.dart │ │ │ │ └── users_number │ │ │ │ │ ├── users_number_bloc.dart │ │ │ │ │ ├── users_number_bloc.freezed.dart │ │ │ │ │ ├── users_number_event.dart │ │ │ │ │ └── users_number_state.dart │ │ │ │ ├── refactors │ │ │ │ └── dashboard_body.dart │ │ │ │ ├── screens │ │ │ │ └── dashboard_screen.dart │ │ │ │ └── widgets │ │ │ │ └── dashboard_container.dart │ │ ├── home_admin │ │ │ └── presentation │ │ │ │ └── screens │ │ │ │ └── home_admin_screen.dart │ │ └── users │ │ │ ├── data │ │ │ ├── data_sources │ │ │ │ └── users_data_source.dart │ │ │ ├── models │ │ │ │ ├── get_all_users_response.dart │ │ │ │ └── get_all_users_response.g.dart │ │ │ └── repos │ │ │ │ └── users_repo.dart │ │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── delete_user │ │ │ │ ├── delete_user_bloc.dart │ │ │ │ ├── delete_user_bloc.freezed.dart │ │ │ │ ├── delete_user_event.dart │ │ │ │ └── delete_user_state.dart │ │ │ └── get_all_users │ │ │ │ ├── get_all_users_bloc.dart │ │ │ │ ├── get_all_users_bloc.freezed.dart │ │ │ │ ├── get_all_users_event.dart │ │ │ │ └── get_all_users_state.dart │ │ │ ├── refactors │ │ │ └── users_body.dart │ │ │ ├── screens │ │ │ └── users_screen.dart │ │ │ └── widgets │ │ │ ├── delete_user_icon.dart │ │ │ ├── search_for_users.dart │ │ │ ├── table_cell_title_widget.dart │ │ │ └── table_for_users.dart │ ├── auth │ │ ├── data │ │ │ ├── data_source │ │ │ │ └── auth_data_source.dart │ │ │ ├── models │ │ │ │ ├── login_request_body.dart │ │ │ │ ├── login_request_body.g.dart │ │ │ │ ├── login_response.dart │ │ │ │ ├── login_response.g.dart │ │ │ │ ├── sign_up_request_body.dart │ │ │ │ ├── sign_up_request_body.g.dart │ │ │ │ ├── sign_up_response.dart │ │ │ │ ├── sign_up_response.g.dart │ │ │ │ ├── user_role_response.dart │ │ │ │ └── user_role_response.g.dart │ │ │ └── repos │ │ │ │ └── auth_repo.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── auth_bloc.dart │ │ │ ├── auth_bloc.freezed.dart │ │ │ ├── auth_event.dart │ │ │ └── auth_state.dart │ │ │ ├── refactors │ │ │ ├── auth_custom_painter.dart │ │ │ ├── login_body.dart │ │ │ └── sign_up_body.dart │ │ │ ├── screens │ │ │ ├── login_screen.dart │ │ │ └── sign_up_screen.dart │ │ │ └── widgets │ │ │ ├── auth_title_info.dart │ │ │ ├── dark_and_lang_buttons.dart │ │ │ ├── login │ │ │ ├── login_button.dart │ │ │ └── login_text_form.dart │ │ │ └── sign_up │ │ │ ├── sign_up_button.dart │ │ │ ├── sign_up_text_form.dart │ │ │ └── user_avatar_image.dart │ └── customer │ │ ├── category │ │ ├── data │ │ │ ├── data_source │ │ │ │ └── category_data_source.dart │ │ │ └── repos │ │ │ │ └── category_repo.dart │ │ └── persentation │ │ │ ├── bloc │ │ │ └── get_category │ │ │ │ ├── get_category_bloc.dart │ │ │ │ ├── get_category_bloc.freezed.dart │ │ │ │ ├── get_category_event.dart │ │ │ │ └── get_category_state.dart │ │ │ ├── refactors │ │ │ └── category_body.dart │ │ │ └── screen │ │ │ └── category_screen.dart │ │ ├── favorites │ │ ├── data │ │ │ └── models │ │ │ │ ├── favorites_model.dart │ │ │ │ └── favorites_model.g.dart │ │ └── presentation │ │ │ ├── cubit │ │ │ ├── favorites_cubit.dart │ │ │ ├── favorites_cubit.freezed.dart │ │ │ └── favorites_state.dart │ │ │ ├── refactors │ │ │ └── favorites_body.dart │ │ │ └── screen │ │ │ └── favorites_screen.dart │ │ ├── home │ │ ├── data │ │ │ ├── data_source │ │ │ │ └── home_data_source.dart │ │ │ ├── models │ │ │ │ ├── banners_response.dart │ │ │ │ └── banners_response.g.dart │ │ │ └── repos │ │ │ │ └── home_repo.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ ├── get_all_categories │ │ │ │ ├── get_all_categories_bloc.dart │ │ │ │ ├── get_all_categories_bloc.freezed.dart │ │ │ │ ├── get_all_categories_event.dart │ │ │ │ └── get_all_categories_state.dart │ │ │ ├── get_all_products │ │ │ │ ├── get_all_products_bloc.dart │ │ │ │ ├── get_all_products_bloc.freezed.dart │ │ │ │ ├── get_all_products_event.dart │ │ │ │ └── get_all_products_state.dart │ │ │ └── get_banners │ │ │ │ ├── get_banners_bloc.dart │ │ │ │ ├── get_banners_bloc.freezed.dart │ │ │ │ ├── get_banners_event.dart │ │ │ │ └── get_banners_state.dart │ │ │ ├── refactors │ │ │ └── home_body.dart │ │ │ ├── screen │ │ │ └── home_screen.dart │ │ │ └── widgets │ │ │ ├── banners │ │ │ └── banner_sliders.dart │ │ │ ├── categories │ │ │ ├── categories_list.dart │ │ │ ├── categories_shimmer.dart │ │ │ └── catgeory_item.dart │ │ │ └── products │ │ │ ├── products_list.dart │ │ │ └── products_shimmer.dart │ │ ├── main │ │ └── presentation │ │ │ ├── cubit │ │ │ ├── main_cubit.dart │ │ │ ├── main_cubit.freezed.dart │ │ │ └── main_state.dart │ │ │ ├── refactors │ │ │ ├── bottom_nav_bar.dart │ │ │ └── main_customer_app_bar.dart │ │ │ ├── screen │ │ │ └── main_screen.dart │ │ │ └── widgets │ │ │ ├── icon_tap_nav_bar.dart │ │ │ └── notification_bar_icon.dart │ │ ├── notifications │ │ ├── data │ │ │ └── models │ │ │ │ ├── notification_model.dart │ │ │ │ └── notification_model.g.dart │ │ └── persentation │ │ │ ├── controller │ │ │ └── notifcaiton_controller.dart │ │ │ ├── refactors │ │ │ └── notification_body.dart │ │ │ ├── screens │ │ │ └── notification_screen.dart │ │ │ └── widgets │ │ │ └── notification_item.dart │ │ ├── product_details │ │ ├── data │ │ │ ├── data_source │ │ │ │ └── product_details_data_source.dart │ │ │ ├── models │ │ │ │ ├── product_details_reponse.dart │ │ │ │ └── product_details_reponse.g.dart │ │ │ └── repos │ │ │ │ └── product_details_repo.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ └── product_details │ │ │ │ ├── product_details_bloc.dart │ │ │ │ ├── product_details_bloc.freezed.dart │ │ │ │ ├── product_details_event.dart │ │ │ │ └── product_details_state.dart │ │ │ ├── refactors │ │ │ ├── add_to_cart_button.dart │ │ │ ├── product_deatils_custom_painter.dart │ │ │ └── product_details_body.dart │ │ │ ├── screen │ │ │ └── product_details_screen.dart │ │ │ └── widgets │ │ │ └── product_details_image_slider.dart │ │ ├── products_view_all │ │ ├── data │ │ │ ├── data_source │ │ │ │ └── products_view_all_data_source.dart │ │ │ └── repos │ │ │ │ └── products_view_all_repo.dart │ │ └── persentation │ │ │ ├── bloc │ │ │ └── products_view_all │ │ │ │ ├── products_view_all_bloc.dart │ │ │ │ ├── products_view_all_event.dart │ │ │ │ └── products_view_all_state.dart │ │ │ ├── refactors │ │ │ └── products_view_all_body.dart │ │ │ └── screen │ │ │ └── products_view_all_screen.dart │ │ ├── profile │ │ ├── data │ │ │ ├── data_source │ │ │ │ └── profile_data_source.dart │ │ │ └── repos │ │ │ │ └── profile_repo.dart │ │ └── presentation │ │ │ ├── bloc │ │ │ └── bloc │ │ │ │ ├── profile_bloc.dart │ │ │ │ ├── profile_bloc.freezed.dart │ │ │ │ ├── profile_event.dart │ │ │ │ └── profile_state.dart │ │ │ ├── refactors │ │ │ └── profile_body.dart │ │ │ ├── screen │ │ │ └── profile_screen.dart │ │ │ └── widgets │ │ │ ├── build_developer.dart │ │ │ ├── build_version.dart │ │ │ ├── dark_mode_change.dart │ │ │ ├── language_change.dart │ │ │ ├── logout_widget.dart │ │ │ ├── notifications_change.dart │ │ │ ├── user_profile_info.dart │ │ │ └── user_profile_shimmer.dart │ │ └── search │ │ ├── data │ │ ├── data_source │ │ │ └── search_data_source.dart │ │ ├── models │ │ │ ├── search_request_body.dart │ │ │ └── search_request_body.g.dart │ │ └── repo │ │ │ └── search_repo.dart │ │ └── presentation │ │ ├── bloc │ │ └── search │ │ │ ├── search_bloc.dart │ │ │ ├── search_bloc.freezed.dart │ │ │ ├── search_event.dart │ │ │ └── search_state.dart │ │ ├── refactors │ │ └── search_body.dart │ │ ├── screen │ │ └── search_screen.dart │ │ └── widgets │ │ ├── filter_buttons.dart │ │ ├── save_filter_button.dart │ │ ├── search_for_data_icon.dart │ │ └── search_name_price_button.dart └── main.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 ├── Podfile ├── 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 ├── 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 └── splash │ └── img │ ├── dark-1x.png │ ├── dark-2x.png │ ├── dark-3x.png │ ├── dark-4x.png │ ├── light-1x.png │ ├── light-2x.png │ ├── light-3x.png │ └── light-4x.png └── 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 /.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/.env.dev -------------------------------------------------------------------------------- /.env.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/.env.prod -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/google-services.json -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/asroo_store/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/kotlin/com/example/asroo_store/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-hdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-hdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-mdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-mdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-hdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-night-hdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-mdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-night-mdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-night-xhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-night-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-night-xxxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-v21/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-xhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-xhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-xxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-xxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/android12splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-xxxhdpi/android12splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable-xxxhdpi/splash.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable/background.png -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/values-night-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v31/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/values-v31/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /assets/fonts/arabic/cairo/Cairo-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/fonts/arabic/cairo/Cairo-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/arabic/cairo/Cairo-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/fonts/arabic/cairo/Cairo-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/arabic/cairo/Cairo-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/fonts/arabic/cairo/Cairo-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/english/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/fonts/english/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/english/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/fonts/english/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/english/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/fonts/english/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /assets/icons/app_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/icons/app_icon.jpg -------------------------------------------------------------------------------- /assets/images/admin/categories_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/admin/categories_drawer.png -------------------------------------------------------------------------------- /assets/images/admin/drawer_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/admin/drawer_image.png -------------------------------------------------------------------------------- /assets/images/admin/products_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/admin/products_drawer.png -------------------------------------------------------------------------------- /assets/images/admin/users_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/admin/users_drawer.png -------------------------------------------------------------------------------- /assets/images/core/dark_test_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/core/dark_test_image.png -------------------------------------------------------------------------------- /assets/images/core/empty_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/core/empty_screen.png -------------------------------------------------------------------------------- /assets/images/core/light_test_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/core/light_test_image.png -------------------------------------------------------------------------------- /assets/images/core/no_network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/core/no_network.jpg -------------------------------------------------------------------------------- /assets/images/core/page_under_build.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/core/page_under_build.jpg -------------------------------------------------------------------------------- /assets/images/core/splash_android_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/core/splash_android_12.png -------------------------------------------------------------------------------- /assets/images/core/splash_ios_android_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/core/splash_ios_android_11.png -------------------------------------------------------------------------------- /assets/images/customer/big_nav_bar_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/customer/big_nav_bar_dark.png -------------------------------------------------------------------------------- /assets/images/customer/big_nav_bar_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/customer/big_nav_bar_light.png -------------------------------------------------------------------------------- /assets/images/customer/home_bg_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/customer/home_bg_dark.png -------------------------------------------------------------------------------- /assets/images/customer/home_bg_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/customer/home_bg_light.png -------------------------------------------------------------------------------- /assets/images/customer/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/images/customer/user.png -------------------------------------------------------------------------------- /assets/svg/arrow_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/arrow_back.svg -------------------------------------------------------------------------------- /assets/svg/build_developer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/build_developer.svg -------------------------------------------------------------------------------- /assets/svg/build_version.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/build_version.svg -------------------------------------------------------------------------------- /assets/svg/car_shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/car_shop.svg -------------------------------------------------------------------------------- /assets/svg/categories_tap_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/categories_tap_icon.svg -------------------------------------------------------------------------------- /assets/svg/dark_mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/dark_mode.svg -------------------------------------------------------------------------------- /assets/svg/favourite_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/favourite_tab_icon.svg -------------------------------------------------------------------------------- /assets/svg/home_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/home_tab_icon.svg -------------------------------------------------------------------------------- /assets/svg/language.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/language.svg -------------------------------------------------------------------------------- /assets/svg/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/logout.svg -------------------------------------------------------------------------------- /assets/svg/notification_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/notification_icon.svg -------------------------------------------------------------------------------- /assets/svg/play_store_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/play_store_512.png -------------------------------------------------------------------------------- /assets/svg/profile_tab_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/profile_tab_icon.svg -------------------------------------------------------------------------------- /assets/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/assets/svg/search.svg -------------------------------------------------------------------------------- /flutter_native_splash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/flutter_native_splash.yaml -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/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/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lang/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lang/ar.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lang/en.json -------------------------------------------------------------------------------- /lib/asroo_store_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/asroo_store_app.dart -------------------------------------------------------------------------------- /lib/core/app/app_cubit/app_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/app_cubit/app_cubit.dart -------------------------------------------------------------------------------- /lib/core/app/app_cubit/app_cubit.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/app_cubit/app_cubit.freezed.dart -------------------------------------------------------------------------------- /lib/core/app/app_cubit/app_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/app_cubit/app_state.dart -------------------------------------------------------------------------------- /lib/core/app/bloc_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/bloc_observer.dart -------------------------------------------------------------------------------- /lib/core/app/connectivity_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/connectivity_controller.dart -------------------------------------------------------------------------------- /lib/core/app/env.variables.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/env.variables.dart -------------------------------------------------------------------------------- /lib/core/app/share/share_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/share/share_cubit.dart -------------------------------------------------------------------------------- /lib/core/app/share/share_cubit.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/share/share_cubit.freezed.dart -------------------------------------------------------------------------------- /lib/core/app/share/share_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/share/share_state.dart -------------------------------------------------------------------------------- /lib/core/app/upload_image/cubit/upload_image_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/upload_image/cubit/upload_image_cubit.dart -------------------------------------------------------------------------------- /lib/core/app/upload_image/cubit/upload_image_cubit.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/upload_image/cubit/upload_image_cubit.freezed.dart -------------------------------------------------------------------------------- /lib/core/app/upload_image/cubit/upload_image_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/upload_image/cubit/upload_image_state.dart -------------------------------------------------------------------------------- /lib/core/app/upload_image/data_source/upload_image_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/upload_image/data_source/upload_image_data_source.dart -------------------------------------------------------------------------------- /lib/core/app/upload_image/model/upload_image_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/upload_image/model/upload_image_response.dart -------------------------------------------------------------------------------- /lib/core/app/upload_image/model/upload_image_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/upload_image/model/upload_image_response.g.dart -------------------------------------------------------------------------------- /lib/core/app/upload_image/repo/upload_image_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/app/upload_image/repo/upload_image_repo.dart -------------------------------------------------------------------------------- /lib/core/common/animations/animate_do.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/animations/animate_do.dart -------------------------------------------------------------------------------- /lib/core/common/bottom_shet/custom_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/bottom_shet/custom_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/core/common/dialogs/custom_dialogs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/dialogs/custom_dialogs.dart -------------------------------------------------------------------------------- /lib/core/common/loading/empty_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/loading/empty_screen.dart -------------------------------------------------------------------------------- /lib/core/common/loading/loading_shimmer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/loading/loading_shimmer.dart -------------------------------------------------------------------------------- /lib/core/common/screens/custom_web_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/screens/custom_web_view.dart -------------------------------------------------------------------------------- /lib/core/common/screens/no_network_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/screens/no_network_screen.dart -------------------------------------------------------------------------------- /lib/core/common/screens/under_build_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/screens/under_build_screen.dart -------------------------------------------------------------------------------- /lib/core/common/toast/show_toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/toast/show_toast.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/admin_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/admin_app_bar.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/custom_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/custom_button.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/custom_container_linear_admin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/custom_container_linear_admin.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/custom_container_linear_customer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/custom_container_linear_customer.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/custom_drop_down.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/custom_drop_down.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/custom_favorite_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/custom_favorite_button.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/custom_linear_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/custom_linear_button.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/custom_product_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/custom_product_item.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/custom_share_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/custom_share_button.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/custom_text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/custom_text_field.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/customer_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/customer_app_bar.dart -------------------------------------------------------------------------------- /lib/core/common/widgets/text_app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/common/widgets/text_app.dart -------------------------------------------------------------------------------- /lib/core/di/injection_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/di/injection_container.dart -------------------------------------------------------------------------------- /lib/core/enums/filter_button_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/enums/filter_button_enum.dart -------------------------------------------------------------------------------- /lib/core/enums/nav_bar_enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/enums/nav_bar_enum.dart -------------------------------------------------------------------------------- /lib/core/extensions/context_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/extensions/context_extension.dart -------------------------------------------------------------------------------- /lib/core/extensions/date_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/extensions/date_extension.dart -------------------------------------------------------------------------------- /lib/core/extensions/string_exetension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/extensions/string_exetension.dart -------------------------------------------------------------------------------- /lib/core/language/app_localizations.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/language/app_localizations.dart -------------------------------------------------------------------------------- /lib/core/language/app_localizations_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/language/app_localizations_delegate.dart -------------------------------------------------------------------------------- /lib/core/language/app_localizations_setup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/language/app_localizations_setup.dart -------------------------------------------------------------------------------- /lib/core/language/lang_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/language/lang_keys.dart -------------------------------------------------------------------------------- /lib/core/routes/app_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/routes/app_routes.dart -------------------------------------------------------------------------------- /lib/core/routes/base_routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/routes/base_routes.dart -------------------------------------------------------------------------------- /lib/core/service/dynamic_link/dynamic_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/dynamic_link/dynamic_link.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/api_result.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/api_result.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/api_result.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/api_result.freezed.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/api_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/api_service.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/api_service.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/api_service.g.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/dio_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/dio_factory.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/qraphql_queries/admin/categories_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/qraphql_queries/admin/categories_queries.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/qraphql_queries/admin/dashboard_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/qraphql_queries/admin/dashboard_queries.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/qraphql_queries/admin/products_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/qraphql_queries/admin/products_queries.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/qraphql_queries/admin/users_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/qraphql_queries/admin/users_queries.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/qraphql_queries/auth/auth_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/qraphql_queries/auth/auth_queries.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/qraphql_queries/customer/category_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/qraphql_queries/customer/category_queries.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/qraphql_queries/customer/home_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/qraphql_queries/customer/home_queries.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/qraphql_queries/customer/product_details_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/qraphql_queries/customer/product_details_queries.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/qraphql_queries/customer/products_view_all_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/qraphql_queries/customer/products_view_all_queries.dart -------------------------------------------------------------------------------- /lib/core/service/graphql/qraphql_queries/customer/search_queries.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/graphql/qraphql_queries/customer/search_queries.dart -------------------------------------------------------------------------------- /lib/core/service/hive/hive_database.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/hive/hive_database.dart -------------------------------------------------------------------------------- /lib/core/service/push_notification/firebase_cloud_messaging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/push_notification/firebase_cloud_messaging.dart -------------------------------------------------------------------------------- /lib/core/service/push_notification/firebase_messaging_navigate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/push_notification/firebase_messaging_navigate.dart -------------------------------------------------------------------------------- /lib/core/service/push_notification/local_notfication_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/push_notification/local_notfication_service.dart -------------------------------------------------------------------------------- /lib/core/service/shared_pref/pref_keys.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/shared_pref/pref_keys.dart -------------------------------------------------------------------------------- /lib/core/service/shared_pref/shared_pref.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/service/shared_pref/shared_pref.dart -------------------------------------------------------------------------------- /lib/core/style/colors/colors_dark.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/style/colors/colors_dark.dart -------------------------------------------------------------------------------- /lib/core/style/colors/colors_light.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/style/colors/colors_light.dart -------------------------------------------------------------------------------- /lib/core/style/fonts/font_family_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/style/fonts/font_family_helper.dart -------------------------------------------------------------------------------- /lib/core/style/fonts/font_weight_helper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/style/fonts/font_weight_helper.dart -------------------------------------------------------------------------------- /lib/core/style/images/app_images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/style/images/app_images.dart -------------------------------------------------------------------------------- /lib/core/style/theme/app_theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/style/theme/app_theme.dart -------------------------------------------------------------------------------- /lib/core/style/theme/assets_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/style/theme/assets_extension.dart -------------------------------------------------------------------------------- /lib/core/style/theme/color_extension.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/style/theme/color_extension.dart -------------------------------------------------------------------------------- /lib/core/utils/admin_drawer_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/utils/admin_drawer_list.dart -------------------------------------------------------------------------------- /lib/core/utils/app_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/utils/app_info.dart -------------------------------------------------------------------------------- /lib/core/utils/app_logout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/utils/app_logout.dart -------------------------------------------------------------------------------- /lib/core/utils/app_regex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/utils/app_regex.dart -------------------------------------------------------------------------------- /lib/core/utils/app_strings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/utils/app_strings.dart -------------------------------------------------------------------------------- /lib/core/utils/app_values.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/utils/app_values.dart -------------------------------------------------------------------------------- /lib/core/utils/image_pick.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/core/utils/image_pick.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/data/data_source/categories_admin_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/data/data_source/categories_admin_data_source.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/data/models/create_category_request_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/data/models/create_category_request_body.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/data/models/create_category_request_body.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/data/models/create_category_request_body.g.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/data/models/create_category_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/data/models/create_category_response.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/data/models/create_category_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/data/models/create_category_response.g.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/data/models/get_all_categories_reponse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/data/models/get_all_categories_reponse.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/data/models/get_all_categories_reponse.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/data/models/get_all_categories_reponse.g.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/data/models/update_category_request_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/data/models/update_category_request_body.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/data/models/update_category_request_body.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/data/models/update_category_request_body.g.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/data/repos/categoreis_admin_repos.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/data/repos/categoreis_admin_repos.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/create_category/create_category_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/create_category/create_category_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/create_category/create_category_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/create_category/create_category_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/create_category/create_category_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/create_category/create_category_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/create_category/create_category_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/create_category/create_category_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/delete_category/delete_category_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/delete_category/delete_category_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/delete_category/delete_category_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/delete_category/delete_category_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/delete_category/delete_category_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/delete_category/delete_category_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/delete_category/delete_category_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/delete_category/delete_category_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/get_all_admin_categories/get_all_admin_categories_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/get_all_admin_categories/get_all_admin_categories_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/get_all_admin_categories/get_all_admin_categories_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/get_all_admin_categories/get_all_admin_categories_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/get_all_admin_categories/get_all_admin_categories_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/get_all_admin_categories/get_all_admin_categories_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/get_all_admin_categories/get_all_admin_categories_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/get_all_admin_categories/get_all_admin_categories_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/update_category/update_category_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/update_category/update_category_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/update_category/update_category_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/update_category/update_category_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/update_category/update_category_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/update_category/update_category_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/bloc/update_category/update_category_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/bloc/update_category/update_category_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/refactors/add_categories_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/refactors/add_categories_body.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/screens/add_categories_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/screens/add_categories_screen.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/widgets/add_category_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/widgets/add_category_item.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/widgets/create/category_upload_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/widgets/create/category_upload_image.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/widgets/create/create_category.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/widgets/create/create_category.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/widgets/create/create_category_bottom_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/widgets/create/create_category_bottom_widget.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/widgets/delete/delete_catgeory_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/widgets/delete/delete_catgeory_widget.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/widgets/update/update_category_bottom_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/widgets/update/update_category_bottom_widget.dart -------------------------------------------------------------------------------- /lib/features/admin/add_categories/presentation/widgets/update/update_upload_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_categories/presentation/widgets/update/update_upload_image.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/data/data_source/add_notificaion_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/data/data_source/add_notificaion_data_source.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/data/models/add_notification_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/data/models/add_notification_model.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/data/models/add_notification_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/data/models/add_notification_model.g.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/data/repos/add_notification_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/data/repos/add_notification_repo.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/add_notification/add_notification_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/add_notification/add_notification_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/add_notification/add_notification_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/add_notification/add_notification_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/add_notification/add_notification_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/add_notification/add_notification_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/add_notification/add_notification_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/add_notification/add_notification_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/get_all_notification_admin/get_all_notification_admin_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/get_all_notification_admin/get_all_notification_admin_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/get_all_notification_admin/get_all_notification_admin_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/get_all_notification_admin/get_all_notification_admin_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/get_all_notification_admin/get_all_notification_admin_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/get_all_notification_admin/get_all_notification_admin_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/get_all_notification_admin/get_all_notification_admin_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/get_all_notification_admin/get_all_notification_admin_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/send_notification/send_notification_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/send_notification/send_notification_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/send_notification/send_notification_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/send_notification/send_notification_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/send_notification/send_notification_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/send_notification/send_notification_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/bloc/send_notification/send_notification_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/bloc/send_notification/send_notification_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/refactors/add_notification_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/refactors/add_notification_body.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/screens/add_notifications_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/screens/add_notifications_screen.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/widgets/add_notification_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/widgets/add_notification_item.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/widgets/create/create_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/widgets/create/create_notification.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/widgets/create/create_notification_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/widgets/create/create_notification_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/widgets/delete/delete_notification_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/widgets/delete/delete_notification_widget.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/widgets/edit/edit_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/widgets/edit/edit_notification.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/widgets/edit/edit_notification_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/widgets/edit/edit_notification_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/features/admin/add_notifications/presentation/widgets/send/send_notification_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_notifications/presentation/widgets/send/send_notification_widget.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/data/data_source/products_admin_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/data/data_source/products_admin_data_source.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/data/models/create_product_request_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/data/models/create_product_request_body.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/data/models/create_product_request_body.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/data/models/create_product_request_body.g.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/data/models/get_all_product_reponse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/data/models/get_all_product_reponse.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/data/models/get_all_product_reponse.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/data/models/get_all_product_reponse.g.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/data/models/update_product_request_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/data/models/update_product_request_body.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/data/models/update_product_request_body.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/data/models/update_product_request_body.g.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/data/repos/products_admin_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/data/repos/products_admin_repo.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/create_product/create_prodcut_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/create_product/create_prodcut_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/create_product/create_prodcut_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/create_product/create_prodcut_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/create_product/create_prodcut_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/create_product/create_prodcut_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/create_product/create_prodcut_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/create_product/create_prodcut_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/delete_product/delete_product_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/delete_product/delete_product_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/delete_product/delete_product_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/delete_product/delete_product_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/delete_product/delete_product_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/delete_product/delete_product_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/delete_product/delete_product_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/delete_product/delete_product_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/get_all_admin_product/get_all_admin_product_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/get_all_admin_product/get_all_admin_product_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/get_all_admin_product/get_all_admin_product_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/get_all_admin_product/get_all_admin_product_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/get_all_admin_product/get_all_admin_product_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/get_all_admin_product/get_all_admin_product_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/get_all_admin_product/get_all_admin_product_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/get_all_admin_product/get_all_admin_product_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/update_product/update_product_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/update_product/update_product_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/update_product/update_product_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/update_product/update_product_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/update_product/update_product_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/update_product/update_product_event.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/bloc/update_product/update_product_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/bloc/update_product/update_product_state.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/refactors/add_products_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/refactors/add_products_body.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/screens/add_products_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/screens/add_products_screen.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/widgets/create/create_product.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/widgets/create/create_product.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/widgets/create/create_product_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/widgets/create/create_product_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/widgets/create/create_product_images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/widgets/create/create_product_images.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/widgets/delete/delete_product_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/widgets/delete/delete_product_widget.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/widgets/product_admin_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/widgets/product_admin_item.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/widgets/update/update_product_bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/widgets/update/update_product_bottom_sheet.dart -------------------------------------------------------------------------------- /lib/features/admin/add_products/presentation/widgets/update/update_product_images.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/add_products/presentation/widgets/update/update_product_images.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/data/data_soruce/dashboard_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/data/data_soruce/dashboard_data_source.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/data/models/categories_number_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/data/models/categories_number_response.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/data/models/categories_number_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/data/models/categories_number_response.g.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/data/models/porducts_number_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/data/models/porducts_number_response.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/data/models/porducts_number_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/data/models/porducts_number_response.g.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/data/models/users_number_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/data/models/users_number_response.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/data/models/users_number_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/data/models/users_number_response.g.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/data/repos/dashboard_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/data/repos/dashboard_repo.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/categories_number/categories_number_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/categories_number/categories_number_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/categories_number/categories_number_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/categories_number/categories_number_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/categories_number/categories_number_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/categories_number/categories_number_event.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/categories_number/categories_number_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/categories_number/categories_number_state.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/products_number/products_number_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/products_number/products_number_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/products_number/products_number_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/products_number/products_number_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/products_number/products_number_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/products_number/products_number_event.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/products_number/products_number_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/products_number/products_number_state.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/users_number/users_number_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/users_number/users_number_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/users_number/users_number_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/users_number/users_number_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/users_number/users_number_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/users_number/users_number_event.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/bloc/users_number/users_number_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/bloc/users_number/users_number_state.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/refactors/dashboard_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/refactors/dashboard_body.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/screens/dashboard_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/screens/dashboard_screen.dart -------------------------------------------------------------------------------- /lib/features/admin/dashboard/presentation/widgets/dashboard_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/dashboard/presentation/widgets/dashboard_container.dart -------------------------------------------------------------------------------- /lib/features/admin/home_admin/presentation/screens/home_admin_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/home_admin/presentation/screens/home_admin_screen.dart -------------------------------------------------------------------------------- /lib/features/admin/users/data/data_sources/users_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/data/data_sources/users_data_source.dart -------------------------------------------------------------------------------- /lib/features/admin/users/data/models/get_all_users_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/data/models/get_all_users_response.dart -------------------------------------------------------------------------------- /lib/features/admin/users/data/models/get_all_users_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/data/models/get_all_users_response.g.dart -------------------------------------------------------------------------------- /lib/features/admin/users/data/repos/users_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/data/repos/users_repo.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/bloc/delete_user/delete_user_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/bloc/delete_user/delete_user_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/bloc/delete_user/delete_user_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/bloc/delete_user/delete_user_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/bloc/delete_user/delete_user_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/bloc/delete_user/delete_user_event.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/bloc/delete_user/delete_user_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/bloc/delete_user/delete_user_state.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/bloc/get_all_users/get_all_users_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/bloc/get_all_users/get_all_users_bloc.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/bloc/get_all_users/get_all_users_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/bloc/get_all_users/get_all_users_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/bloc/get_all_users/get_all_users_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/bloc/get_all_users/get_all_users_event.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/bloc/get_all_users/get_all_users_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/bloc/get_all_users/get_all_users_state.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/refactors/users_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/refactors/users_body.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/screens/users_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/screens/users_screen.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/widgets/delete_user_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/widgets/delete_user_icon.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/widgets/search_for_users.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/widgets/search_for_users.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/widgets/table_cell_title_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/widgets/table_cell_title_widget.dart -------------------------------------------------------------------------------- /lib/features/admin/users/presentation/widgets/table_for_users.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/admin/users/presentation/widgets/table_for_users.dart -------------------------------------------------------------------------------- /lib/features/auth/data/data_source/auth_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/data_source/auth_data_source.dart -------------------------------------------------------------------------------- /lib/features/auth/data/models/login_request_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/models/login_request_body.dart -------------------------------------------------------------------------------- /lib/features/auth/data/models/login_request_body.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/models/login_request_body.g.dart -------------------------------------------------------------------------------- /lib/features/auth/data/models/login_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/models/login_response.dart -------------------------------------------------------------------------------- /lib/features/auth/data/models/login_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/models/login_response.g.dart -------------------------------------------------------------------------------- /lib/features/auth/data/models/sign_up_request_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/models/sign_up_request_body.dart -------------------------------------------------------------------------------- /lib/features/auth/data/models/sign_up_request_body.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/models/sign_up_request_body.g.dart -------------------------------------------------------------------------------- /lib/features/auth/data/models/sign_up_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/models/sign_up_response.dart -------------------------------------------------------------------------------- /lib/features/auth/data/models/sign_up_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/models/sign_up_response.g.dart -------------------------------------------------------------------------------- /lib/features/auth/data/models/user_role_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/models/user_role_response.dart -------------------------------------------------------------------------------- /lib/features/auth/data/models/user_role_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/models/user_role_response.g.dart -------------------------------------------------------------------------------- /lib/features/auth/data/repos/auth_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/data/repos/auth_repo.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/bloc/auth_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/bloc/auth_bloc.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/bloc/auth_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/bloc/auth_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/bloc/auth_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/bloc/auth_event.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/bloc/auth_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/bloc/auth_state.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/refactors/auth_custom_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/refactors/auth_custom_painter.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/refactors/login_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/refactors/login_body.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/refactors/sign_up_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/refactors/sign_up_body.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/screens/login_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/screens/login_screen.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/screens/sign_up_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/screens/sign_up_screen.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/auth_title_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/widgets/auth_title_info.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/dark_and_lang_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/widgets/dark_and_lang_buttons.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/login/login_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/widgets/login/login_button.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/login/login_text_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/widgets/login/login_text_form.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/sign_up/sign_up_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/widgets/sign_up/sign_up_button.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/sign_up/sign_up_text_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/widgets/sign_up/sign_up_text_form.dart -------------------------------------------------------------------------------- /lib/features/auth/presentation/widgets/sign_up/user_avatar_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/auth/presentation/widgets/sign_up/user_avatar_image.dart -------------------------------------------------------------------------------- /lib/features/customer/category/data/data_source/category_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/category/data/data_source/category_data_source.dart -------------------------------------------------------------------------------- /lib/features/customer/category/data/repos/category_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/category/data/repos/category_repo.dart -------------------------------------------------------------------------------- /lib/features/customer/category/persentation/bloc/get_category/get_category_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/category/persentation/bloc/get_category/get_category_bloc.dart -------------------------------------------------------------------------------- /lib/features/customer/category/persentation/bloc/get_category/get_category_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/category/persentation/bloc/get_category/get_category_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/customer/category/persentation/bloc/get_category/get_category_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/category/persentation/bloc/get_category/get_category_event.dart -------------------------------------------------------------------------------- /lib/features/customer/category/persentation/bloc/get_category/get_category_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/category/persentation/bloc/get_category/get_category_state.dart -------------------------------------------------------------------------------- /lib/features/customer/category/persentation/refactors/category_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/category/persentation/refactors/category_body.dart -------------------------------------------------------------------------------- /lib/features/customer/category/persentation/screen/category_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/category/persentation/screen/category_screen.dart -------------------------------------------------------------------------------- /lib/features/customer/favorites/data/models/favorites_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/favorites/data/models/favorites_model.dart -------------------------------------------------------------------------------- /lib/features/customer/favorites/data/models/favorites_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/favorites/data/models/favorites_model.g.dart -------------------------------------------------------------------------------- /lib/features/customer/favorites/presentation/cubit/favorites_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/favorites/presentation/cubit/favorites_cubit.dart -------------------------------------------------------------------------------- /lib/features/customer/favorites/presentation/cubit/favorites_cubit.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/favorites/presentation/cubit/favorites_cubit.freezed.dart -------------------------------------------------------------------------------- /lib/features/customer/favorites/presentation/cubit/favorites_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/favorites/presentation/cubit/favorites_state.dart -------------------------------------------------------------------------------- /lib/features/customer/favorites/presentation/refactors/favorites_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/favorites/presentation/refactors/favorites_body.dart -------------------------------------------------------------------------------- /lib/features/customer/favorites/presentation/screen/favorites_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/favorites/presentation/screen/favorites_screen.dart -------------------------------------------------------------------------------- /lib/features/customer/home/data/data_source/home_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/data/data_source/home_data_source.dart -------------------------------------------------------------------------------- /lib/features/customer/home/data/models/banners_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/data/models/banners_response.dart -------------------------------------------------------------------------------- /lib/features/customer/home/data/models/banners_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/data/models/banners_response.g.dart -------------------------------------------------------------------------------- /lib/features/customer/home/data/repos/home_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/data/repos/home_repo.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_all_categories/get_all_categories_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_all_categories/get_all_categories_bloc.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_all_categories/get_all_categories_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_all_categories/get_all_categories_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_all_categories/get_all_categories_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_all_categories/get_all_categories_event.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_all_categories/get_all_categories_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_all_categories/get_all_categories_state.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_all_products/get_all_products_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_all_products/get_all_products_bloc.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_all_products/get_all_products_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_all_products/get_all_products_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_all_products/get_all_products_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_all_products/get_all_products_event.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_all_products/get_all_products_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_all_products/get_all_products_state.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_banners/get_banners_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_banners/get_banners_bloc.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_banners/get_banners_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_banners/get_banners_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_banners/get_banners_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_banners/get_banners_event.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/bloc/get_banners/get_banners_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/bloc/get_banners/get_banners_state.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/refactors/home_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/refactors/home_body.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/screen/home_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/screen/home_screen.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/widgets/banners/banner_sliders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/widgets/banners/banner_sliders.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/widgets/categories/categories_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/widgets/categories/categories_list.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/widgets/categories/categories_shimmer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/widgets/categories/categories_shimmer.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/widgets/categories/catgeory_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/widgets/categories/catgeory_item.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/widgets/products/products_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/widgets/products/products_list.dart -------------------------------------------------------------------------------- /lib/features/customer/home/presentation/widgets/products/products_shimmer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/home/presentation/widgets/products/products_shimmer.dart -------------------------------------------------------------------------------- /lib/features/customer/main/presentation/cubit/main_cubit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/main/presentation/cubit/main_cubit.dart -------------------------------------------------------------------------------- /lib/features/customer/main/presentation/cubit/main_cubit.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/main/presentation/cubit/main_cubit.freezed.dart -------------------------------------------------------------------------------- /lib/features/customer/main/presentation/cubit/main_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/main/presentation/cubit/main_state.dart -------------------------------------------------------------------------------- /lib/features/customer/main/presentation/refactors/bottom_nav_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/main/presentation/refactors/bottom_nav_bar.dart -------------------------------------------------------------------------------- /lib/features/customer/main/presentation/refactors/main_customer_app_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/main/presentation/refactors/main_customer_app_bar.dart -------------------------------------------------------------------------------- /lib/features/customer/main/presentation/screen/main_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/main/presentation/screen/main_screen.dart -------------------------------------------------------------------------------- /lib/features/customer/main/presentation/widgets/icon_tap_nav_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/main/presentation/widgets/icon_tap_nav_bar.dart -------------------------------------------------------------------------------- /lib/features/customer/main/presentation/widgets/notification_bar_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/main/presentation/widgets/notification_bar_icon.dart -------------------------------------------------------------------------------- /lib/features/customer/notifications/data/models/notification_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/notifications/data/models/notification_model.dart -------------------------------------------------------------------------------- /lib/features/customer/notifications/data/models/notification_model.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/notifications/data/models/notification_model.g.dart -------------------------------------------------------------------------------- /lib/features/customer/notifications/persentation/controller/notifcaiton_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/notifications/persentation/controller/notifcaiton_controller.dart -------------------------------------------------------------------------------- /lib/features/customer/notifications/persentation/refactors/notification_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/notifications/persentation/refactors/notification_body.dart -------------------------------------------------------------------------------- /lib/features/customer/notifications/persentation/screens/notification_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/notifications/persentation/screens/notification_screen.dart -------------------------------------------------------------------------------- /lib/features/customer/notifications/persentation/widgets/notification_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/notifications/persentation/widgets/notification_item.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/data/data_source/product_details_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/data/data_source/product_details_data_source.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/data/models/product_details_reponse.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/data/models/product_details_reponse.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/data/models/product_details_reponse.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/data/models/product_details_reponse.g.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/data/repos/product_details_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/data/repos/product_details_repo.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/presentation/bloc/product_details/product_details_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/presentation/bloc/product_details/product_details_bloc.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/presentation/bloc/product_details/product_details_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/presentation/bloc/product_details/product_details_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/presentation/bloc/product_details/product_details_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/presentation/bloc/product_details/product_details_event.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/presentation/bloc/product_details/product_details_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/presentation/bloc/product_details/product_details_state.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/presentation/refactors/add_to_cart_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/presentation/refactors/add_to_cart_button.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/presentation/refactors/product_deatils_custom_painter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/presentation/refactors/product_deatils_custom_painter.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/presentation/refactors/product_details_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/presentation/refactors/product_details_body.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/presentation/screen/product_details_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/presentation/screen/product_details_screen.dart -------------------------------------------------------------------------------- /lib/features/customer/product_details/presentation/widgets/product_details_image_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/product_details/presentation/widgets/product_details_image_slider.dart -------------------------------------------------------------------------------- /lib/features/customer/products_view_all/data/data_source/products_view_all_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/products_view_all/data/data_source/products_view_all_data_source.dart -------------------------------------------------------------------------------- /lib/features/customer/products_view_all/data/repos/products_view_all_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/products_view_all/data/repos/products_view_all_repo.dart -------------------------------------------------------------------------------- /lib/features/customer/products_view_all/persentation/bloc/products_view_all/products_view_all_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/products_view_all/persentation/bloc/products_view_all/products_view_all_bloc.dart -------------------------------------------------------------------------------- /lib/features/customer/products_view_all/persentation/bloc/products_view_all/products_view_all_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/products_view_all/persentation/bloc/products_view_all/products_view_all_event.dart -------------------------------------------------------------------------------- /lib/features/customer/products_view_all/persentation/bloc/products_view_all/products_view_all_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/products_view_all/persentation/bloc/products_view_all/products_view_all_state.dart -------------------------------------------------------------------------------- /lib/features/customer/products_view_all/persentation/refactors/products_view_all_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/products_view_all/persentation/refactors/products_view_all_body.dart -------------------------------------------------------------------------------- /lib/features/customer/products_view_all/persentation/screen/products_view_all_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/products_view_all/persentation/screen/products_view_all_screen.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/data/data_source/profile_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/data/data_source/profile_data_source.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/data/repos/profile_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/data/repos/profile_repo.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/bloc/bloc/profile_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/bloc/bloc/profile_bloc.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/bloc/bloc/profile_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/bloc/bloc/profile_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/bloc/bloc/profile_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/bloc/bloc/profile_event.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/bloc/bloc/profile_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/bloc/bloc/profile_state.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/refactors/profile_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/refactors/profile_body.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/screen/profile_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/screen/profile_screen.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/widgets/build_developer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/widgets/build_developer.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/widgets/build_version.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/widgets/build_version.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/widgets/dark_mode_change.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/widgets/dark_mode_change.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/widgets/language_change.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/widgets/language_change.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/widgets/logout_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/widgets/logout_widget.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/widgets/notifications_change.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/widgets/notifications_change.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/widgets/user_profile_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/widgets/user_profile_info.dart -------------------------------------------------------------------------------- /lib/features/customer/profile/presentation/widgets/user_profile_shimmer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/profile/presentation/widgets/user_profile_shimmer.dart -------------------------------------------------------------------------------- /lib/features/customer/search/data/data_source/search_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/data/data_source/search_data_source.dart -------------------------------------------------------------------------------- /lib/features/customer/search/data/models/search_request_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/data/models/search_request_body.dart -------------------------------------------------------------------------------- /lib/features/customer/search/data/models/search_request_body.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/data/models/search_request_body.g.dart -------------------------------------------------------------------------------- /lib/features/customer/search/data/repo/search_repo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/data/repo/search_repo.dart -------------------------------------------------------------------------------- /lib/features/customer/search/presentation/bloc/search/search_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/presentation/bloc/search/search_bloc.dart -------------------------------------------------------------------------------- /lib/features/customer/search/presentation/bloc/search/search_bloc.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/presentation/bloc/search/search_bloc.freezed.dart -------------------------------------------------------------------------------- /lib/features/customer/search/presentation/bloc/search/search_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/presentation/bloc/search/search_event.dart -------------------------------------------------------------------------------- /lib/features/customer/search/presentation/bloc/search/search_state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/presentation/bloc/search/search_state.dart -------------------------------------------------------------------------------- /lib/features/customer/search/presentation/refactors/search_body.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/presentation/refactors/search_body.dart -------------------------------------------------------------------------------- /lib/features/customer/search/presentation/screen/search_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/presentation/screen/search_screen.dart -------------------------------------------------------------------------------- /lib/features/customer/search/presentation/widgets/filter_buttons.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/presentation/widgets/filter_buttons.dart -------------------------------------------------------------------------------- /lib/features/customer/search/presentation/widgets/save_filter_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/presentation/widgets/save_filter_button.dart -------------------------------------------------------------------------------- /lib/features/customer/search/presentation/widgets/search_for_data_icon.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/presentation/widgets/search_for_data_icon.dart -------------------------------------------------------------------------------- /lib/features/customer/search/presentation/widgets/search_name_price_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/features/customer/search/presentation/widgets/search_name_price_button.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/lib/main.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/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/ksroo/asroo_store/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/manifest.json -------------------------------------------------------------------------------- /web/splash/img/dark-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/splash/img/dark-1x.png -------------------------------------------------------------------------------- /web/splash/img/dark-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/splash/img/dark-2x.png -------------------------------------------------------------------------------- /web/splash/img/dark-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/splash/img/dark-3x.png -------------------------------------------------------------------------------- /web/splash/img/dark-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/splash/img/dark-4x.png -------------------------------------------------------------------------------- /web/splash/img/light-1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/splash/img/light-1x.png -------------------------------------------------------------------------------- /web/splash/img/light-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/splash/img/light-2x.png -------------------------------------------------------------------------------- /web/splash/img/light-3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/splash/img/light-3x.png -------------------------------------------------------------------------------- /web/splash/img/light-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/web/splash/img/light-4x.png -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksroo/asroo_store/HEAD/windows/runner/win32_window.h --------------------------------------------------------------------------------