├── .editorconfig ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .metadata ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── app │ ├── build.gradle.kts │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── jd_mall_flutter │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── launcher_icon.png │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ └── styles.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties └── settings.gradle.kts ├── change.md ├── devtools_options.yaml ├── flutter_launcher_icons.yaml ├── flutter_native_splash.yaml ├── images ├── arrow_right_black.png ├── arrow_right_grey100.png ├── black_bg_close.png ├── default.png ├── detail │ ├── ic_arrow_right.png │ ├── ic_cart.png │ ├── ic_customer_service.png │ └── ic_store_red.png ├── header.png ├── ic_address.png ├── ic_arrow_right.png ├── ic_arrow_right_grey.png ├── ic_back_black.png ├── ic_back_grey.png ├── ic_back_top.png ├── ic_camera.png ├── ic_cart.png ├── ic_cart_active.png ├── ic_category.png ├── ic_category_active.png ├── ic_default_header.png ├── ic_ellipsis.png ├── ic_ellipsis_black.png ├── ic_ellipsis_grey.png ├── ic_failed.jpg ├── ic_friend.png ├── ic_goods_star.png ├── ic_home.png ├── ic_home_active.png ├── ic_look_history.png ├── ic_message.png ├── ic_message_white.png ├── ic_mine.png ├── ic_mine_active.png ├── ic_pet.png ├── ic_scan.png ├── ic_search.png ├── ic_setting.png ├── ic_share_black.png ├── ic_share_grey.png ├── ic_store.png ├── ic_store_focus.png ├── ic_todo_evaluate.png ├── ic_todo_exchange.png ├── ic_todo_get.png ├── ic_todo_pay.png ├── logo.png ├── message.png ├── mine_top_bg.png ├── probably_like.png ├── qq.png ├── scan.png ├── selector_check_false.png ├── selector_check_true.png ├── shot │ ├── cart.gif │ ├── cart.png │ ├── category.png │ ├── category2.gif │ ├── detail.gif │ ├── detail.png │ ├── f_redux.png │ ├── flutter.png │ ├── home.png │ ├── home1.gif │ ├── mine.gif │ ├── mine.png │ ├── webview.gif │ ├── webview.png │ ├── wx.jpg │ └── zfb.jpg ├── splash.jpeg ├── user_header_head.png └── wechat.png ├── 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 │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── Runner-Bridging-Header.h └── RunnerTests │ └── RunnerTests.swift ├── lib ├── app.dart ├── common │ ├── cache │ │ └── cache_asset_service.dart │ ├── constant │ │ └── index.dart │ ├── event │ │ ├── event_bus.dart │ │ ├── http_error_event.dart │ │ ├── index.dart │ │ └── msg_event.dart │ ├── extension │ │ ├── color_ext.dart │ │ ├── get_router_navigation_ext.dart │ │ ├── image_file_ext.dart │ │ └── num_ext.dart │ ├── global │ │ └── Global.dart │ ├── observer │ │ ├── navigator_change_observer.dart │ │ └── router_stack_manger.dart │ ├── style │ │ └── common_style.dart │ ├── types │ │ └── common.dart │ └── util │ │ ├── easy_refresh_util.dart │ │ ├── local_storage_util.dart │ │ ├── radian_util.dart │ │ ├── refresh_util.dart │ │ ├── screen_util.dart │ │ └── util.dart ├── component │ ├── back_to_top.dart │ ├── back_top.dart │ ├── common_header.dart │ ├── common_service.dart │ ├── goods_item.dart │ ├── group_grid_view.dart │ ├── image │ │ ├── asset_image.dart │ │ └── extend_image_network.dart │ ├── indicator │ │ ├── common_indicator.dart │ │ └── page_Indicator.dart │ ├── keep_alive_wrapper.dart │ ├── lazy_load_indexed_stack.dart │ ├── line_two.dart │ ├── linear_button.dart │ ├── loading_widget.dart │ ├── menu_item.dart │ ├── nil.dart │ ├── no_shadow_scroll_behavior.dart │ ├── page_goods_list.dart │ ├── page_goods_list_skeleton.dart │ ├── page_menu.dart │ ├── persistentHeader │ │ ├── sliver_header_builder.dart │ │ └── sliver_persistent_header_delegate.dart │ ├── persistentHeaderToBox │ │ ├── extra_info_constraints.dart │ │ └── sliver_persistent_header_box_builder.dart │ ├── photoGallery │ │ ├── photo_gallery.dart │ │ └── photo_gallery_dialog.dart │ ├── skeleton │ │ └── placeholders.dart │ ├── stepper │ │ ├── stepper.dart │ │ └── style.dart │ ├── swiper │ │ └── swiper.dart │ └── text_item.dart ├── config │ ├── env_config.dart │ └── global_configs.dart ├── generated │ └── assets.dart ├── http │ ├── base_response.dart │ ├── code.dart │ ├── http.dart │ └── interceptors │ │ ├── debounce_Interceptor.dart │ │ ├── network_interceptor.dart │ │ ├── response_interceptor.dart │ │ └── token_Interceptor.dart ├── listener │ └── http_error_listener.dart ├── main_dev.dart ├── main_prd.dart ├── middleware │ └── auth_middleware.dart ├── mixin │ └── image_picker_mixin.dart ├── models │ ├── cart_goods.dart │ ├── cart_goods.g.dart │ ├── goods_detail_res.dart │ ├── goods_detail_res.g.dart │ ├── goods_page_info.dart │ ├── goods_page_info.g.dart │ ├── home_page_info.dart │ ├── home_page_info.g.dart │ ├── login_response.dart │ ├── login_response.g.dart │ ├── mine_menu_tab_info.dart │ ├── mine_menu_tab_info.g.dart │ ├── page_args.dart │ ├── page_args.g.dart │ ├── primary_category_list.dart │ ├── primary_category_list.g.dart │ ├── second_group_category_info.dart │ └── second_group_category_info.g.dart ├── routes.dart ├── translation │ └── messages.dart └── view │ ├── main │ ├── main_bindings.dart │ └── main_page.dart │ ├── page │ ├── cart │ │ ├── cart_controller.dart │ │ ├── cart_page.dart │ │ ├── service.dart │ │ └── widget │ │ │ ├── cart_goods.dart │ │ │ ├── cart_header.dart │ │ │ ├── condition.dart │ │ │ ├── goods_list.dart │ │ │ ├── probably_like.dart │ │ │ └── total_settlement.dart │ ├── category │ │ ├── category_controller.dart │ │ ├── category_page.dart │ │ ├── service.dart │ │ ├── util.dart │ │ └── widget │ │ │ ├── header.dart │ │ │ ├── left_cate.dart │ │ │ └── right_group.dart │ ├── detail │ │ ├── detail_bindings.dart │ │ ├── detail_controller.dart │ │ ├── detail_page.dart │ │ ├── service.dart │ │ └── widget │ │ │ ├── address_info.dart │ │ │ ├── appraise_info.dart │ │ │ ├── back_to_top.dart │ │ │ ├── detail_card.dart │ │ │ ├── fixed_bottom.dart │ │ │ ├── goods_info.dart │ │ │ ├── img_slider.dart │ │ │ ├── sku_info.dart │ │ │ ├── store_goods.dart │ │ │ ├── store_goods_header.dart │ │ │ └── tab_header.dart │ ├── example │ │ ├── Interlaced_animation.dart │ │ ├── breathing_method.dart │ │ ├── complete_form.dart │ │ ├── contact_list.dart │ │ ├── file_preview.dart │ │ ├── gesture_spring.dart │ │ ├── sample_list.dart │ │ ├── snow_man.dart │ │ ├── stamp_paper.dart │ │ ├── util │ │ │ └── color_utils.dart │ │ ├── video_simple.dart │ │ └── widget │ │ │ └── list_item.dart │ ├── home │ │ ├── home_controller.dart │ │ ├── home_page.dart │ │ ├── service.dart │ │ ├── util.dart │ │ └── widget │ │ │ ├── adv_img.dart │ │ │ ├── gallery_list.dart │ │ │ ├── home_skeleton.dart │ │ │ ├── menu_slider.dart │ │ │ ├── search_header.dart │ │ │ └── tab_list.dart │ ├── login │ │ ├── login_bindings.dart │ │ ├── login_controller.dart │ │ ├── login_page.dart │ │ ├── service.dart │ │ └── widget │ │ │ ├── login_form.dart │ │ │ ├── login_header.dart │ │ │ └── login_other_way.dart │ ├── mine │ │ ├── mine_controller.dart │ │ ├── mine_page.dart │ │ ├── service.dart │ │ └── widget │ │ │ ├── info_header.dart │ │ │ ├── order_card.dart │ │ │ ├── single_line_menu.dart │ │ │ └── tab_list.dart │ ├── order │ │ └── generate │ │ │ ├── generate_order.dart │ │ │ └── widget │ │ │ ├── bottom.dart │ │ │ ├── default_address.dart │ │ │ ├── order_goods.dart │ │ │ ├── order_invoice.dart │ │ │ └── order_summation.dart │ └── personal │ │ └── personal_info.dart │ ├── system │ └── page404.dart │ └── vebview │ ├── type.dart │ ├── webview_page.dart │ └── widget │ └── floating_header.dart ├── mock_server ├── api │ ├── cart │ │ ├── queryCartGoodsList.json │ │ └── queryMaybeLikeList.json │ ├── category │ │ ├── list.json │ │ └── queryContentByCategory.json │ ├── common │ │ ├── login.json │ │ └── queryGoodsListByPage.json │ ├── detail │ │ ├── queryGoodsDetail.json │ │ └── queryStoreGoodsList.json │ ├── example │ │ └── queryContactList.json │ ├── home │ │ └── queryHomePageInfo.json │ └── mine │ │ ├── queryMineInfo.json │ │ └── queryRecommendList.json └── package.json ├── pubspec.lock ├── pubspec.yaml ├── route.md └── web ├── favicon.png ├── icons ├── Icon-192.png ├── Icon-512.png ├── Icon-maskable-192.png └── Icon-maskable-512.png ├── index.html └── manifest.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/build.gradle.kts -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/kotlin/com/example/jd_mall_flutter/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/kotlin/com/example/jd_mall_flutter/MainActivity.kt -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/mipmap-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/mipmap-mdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/mipmap-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/mipmap-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/mipmap-xxxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/build.gradle.kts -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/android/settings.gradle.kts -------------------------------------------------------------------------------- /change.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/change.md -------------------------------------------------------------------------------- /devtools_options.yaml: -------------------------------------------------------------------------------- 1 | extensions: 2 | -------------------------------------------------------------------------------- /flutter_launcher_icons.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/flutter_launcher_icons.yaml -------------------------------------------------------------------------------- /flutter_native_splash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/flutter_native_splash.yaml -------------------------------------------------------------------------------- /images/arrow_right_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/arrow_right_black.png -------------------------------------------------------------------------------- /images/arrow_right_grey100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/arrow_right_grey100.png -------------------------------------------------------------------------------- /images/black_bg_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/black_bg_close.png -------------------------------------------------------------------------------- /images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/default.png -------------------------------------------------------------------------------- /images/detail/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/detail/ic_arrow_right.png -------------------------------------------------------------------------------- /images/detail/ic_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/detail/ic_cart.png -------------------------------------------------------------------------------- /images/detail/ic_customer_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/detail/ic_customer_service.png -------------------------------------------------------------------------------- /images/detail/ic_store_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/detail/ic_store_red.png -------------------------------------------------------------------------------- /images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/header.png -------------------------------------------------------------------------------- /images/ic_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_address.png -------------------------------------------------------------------------------- /images/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_arrow_right.png -------------------------------------------------------------------------------- /images/ic_arrow_right_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_arrow_right_grey.png -------------------------------------------------------------------------------- /images/ic_back_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_back_black.png -------------------------------------------------------------------------------- /images/ic_back_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_back_grey.png -------------------------------------------------------------------------------- /images/ic_back_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_back_top.png -------------------------------------------------------------------------------- /images/ic_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_camera.png -------------------------------------------------------------------------------- /images/ic_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_cart.png -------------------------------------------------------------------------------- /images/ic_cart_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_cart_active.png -------------------------------------------------------------------------------- /images/ic_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_category.png -------------------------------------------------------------------------------- /images/ic_category_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_category_active.png -------------------------------------------------------------------------------- /images/ic_default_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_default_header.png -------------------------------------------------------------------------------- /images/ic_ellipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_ellipsis.png -------------------------------------------------------------------------------- /images/ic_ellipsis_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_ellipsis_black.png -------------------------------------------------------------------------------- /images/ic_ellipsis_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_ellipsis_grey.png -------------------------------------------------------------------------------- /images/ic_failed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_failed.jpg -------------------------------------------------------------------------------- /images/ic_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_friend.png -------------------------------------------------------------------------------- /images/ic_goods_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_goods_star.png -------------------------------------------------------------------------------- /images/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_home.png -------------------------------------------------------------------------------- /images/ic_home_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_home_active.png -------------------------------------------------------------------------------- /images/ic_look_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_look_history.png -------------------------------------------------------------------------------- /images/ic_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_message.png -------------------------------------------------------------------------------- /images/ic_message_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_message_white.png -------------------------------------------------------------------------------- /images/ic_mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_mine.png -------------------------------------------------------------------------------- /images/ic_mine_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_mine_active.png -------------------------------------------------------------------------------- /images/ic_pet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_pet.png -------------------------------------------------------------------------------- /images/ic_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_scan.png -------------------------------------------------------------------------------- /images/ic_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_search.png -------------------------------------------------------------------------------- /images/ic_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_setting.png -------------------------------------------------------------------------------- /images/ic_share_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_share_black.png -------------------------------------------------------------------------------- /images/ic_share_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_share_grey.png -------------------------------------------------------------------------------- /images/ic_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_store.png -------------------------------------------------------------------------------- /images/ic_store_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_store_focus.png -------------------------------------------------------------------------------- /images/ic_todo_evaluate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_todo_evaluate.png -------------------------------------------------------------------------------- /images/ic_todo_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_todo_exchange.png -------------------------------------------------------------------------------- /images/ic_todo_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_todo_get.png -------------------------------------------------------------------------------- /images/ic_todo_pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/ic_todo_pay.png -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/message.png -------------------------------------------------------------------------------- /images/mine_top_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/mine_top_bg.png -------------------------------------------------------------------------------- /images/probably_like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/probably_like.png -------------------------------------------------------------------------------- /images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/qq.png -------------------------------------------------------------------------------- /images/scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/scan.png -------------------------------------------------------------------------------- /images/selector_check_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/selector_check_false.png -------------------------------------------------------------------------------- /images/selector_check_true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/selector_check_true.png -------------------------------------------------------------------------------- /images/shot/cart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/cart.gif -------------------------------------------------------------------------------- /images/shot/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/cart.png -------------------------------------------------------------------------------- /images/shot/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/category.png -------------------------------------------------------------------------------- /images/shot/category2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/category2.gif -------------------------------------------------------------------------------- /images/shot/detail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/detail.gif -------------------------------------------------------------------------------- /images/shot/detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/detail.png -------------------------------------------------------------------------------- /images/shot/f_redux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/f_redux.png -------------------------------------------------------------------------------- /images/shot/flutter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/flutter.png -------------------------------------------------------------------------------- /images/shot/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/home.png -------------------------------------------------------------------------------- /images/shot/home1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/home1.gif -------------------------------------------------------------------------------- /images/shot/mine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/mine.gif -------------------------------------------------------------------------------- /images/shot/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/mine.png -------------------------------------------------------------------------------- /images/shot/webview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/webview.gif -------------------------------------------------------------------------------- /images/shot/webview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/webview.png -------------------------------------------------------------------------------- /images/shot/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/wx.jpg -------------------------------------------------------------------------------- /images/shot/zfb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/shot/zfb.jpg -------------------------------------------------------------------------------- /images/splash.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/splash.jpeg -------------------------------------------------------------------------------- /images/user_header_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/user_header_head.png -------------------------------------------------------------------------------- /images/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/images/wechat.png -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/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/GuoguoDad/jd_mall_flutter/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/GuoguoDad/jd_mall_flutter/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/GuoguoDad/jd_mall_flutter/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/GuoguoDad/jd_mall_flutter/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/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/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/GuoguoDad/jd_mall_flutter/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/GuoguoDad/jd_mall_flutter/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/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/Runner/Info.plist -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/app.dart -------------------------------------------------------------------------------- /lib/common/cache/cache_asset_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/cache/cache_asset_service.dart -------------------------------------------------------------------------------- /lib/common/constant/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/constant/index.dart -------------------------------------------------------------------------------- /lib/common/event/event_bus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/event/event_bus.dart -------------------------------------------------------------------------------- /lib/common/event/http_error_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/event/http_error_event.dart -------------------------------------------------------------------------------- /lib/common/event/index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/event/index.dart -------------------------------------------------------------------------------- /lib/common/event/msg_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/event/msg_event.dart -------------------------------------------------------------------------------- /lib/common/extension/color_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/extension/color_ext.dart -------------------------------------------------------------------------------- /lib/common/extension/get_router_navigation_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/extension/get_router_navigation_ext.dart -------------------------------------------------------------------------------- /lib/common/extension/image_file_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/extension/image_file_ext.dart -------------------------------------------------------------------------------- /lib/common/extension/num_ext.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/extension/num_ext.dart -------------------------------------------------------------------------------- /lib/common/global/Global.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/global/Global.dart -------------------------------------------------------------------------------- /lib/common/observer/navigator_change_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/observer/navigator_change_observer.dart -------------------------------------------------------------------------------- /lib/common/observer/router_stack_manger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/observer/router_stack_manger.dart -------------------------------------------------------------------------------- /lib/common/style/common_style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/style/common_style.dart -------------------------------------------------------------------------------- /lib/common/types/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/types/common.dart -------------------------------------------------------------------------------- /lib/common/util/easy_refresh_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/util/easy_refresh_util.dart -------------------------------------------------------------------------------- /lib/common/util/local_storage_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/util/local_storage_util.dart -------------------------------------------------------------------------------- /lib/common/util/radian_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/util/radian_util.dart -------------------------------------------------------------------------------- /lib/common/util/refresh_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/util/refresh_util.dart -------------------------------------------------------------------------------- /lib/common/util/screen_util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/util/screen_util.dart -------------------------------------------------------------------------------- /lib/common/util/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/common/util/util.dart -------------------------------------------------------------------------------- /lib/component/back_to_top.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/back_to_top.dart -------------------------------------------------------------------------------- /lib/component/back_top.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/back_top.dart -------------------------------------------------------------------------------- /lib/component/common_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/common_header.dart -------------------------------------------------------------------------------- /lib/component/common_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/common_service.dart -------------------------------------------------------------------------------- /lib/component/goods_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/goods_item.dart -------------------------------------------------------------------------------- /lib/component/group_grid_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/group_grid_view.dart -------------------------------------------------------------------------------- /lib/component/image/asset_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/image/asset_image.dart -------------------------------------------------------------------------------- /lib/component/image/extend_image_network.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/image/extend_image_network.dart -------------------------------------------------------------------------------- /lib/component/indicator/common_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/indicator/common_indicator.dart -------------------------------------------------------------------------------- /lib/component/indicator/page_Indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/indicator/page_Indicator.dart -------------------------------------------------------------------------------- /lib/component/keep_alive_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/keep_alive_wrapper.dart -------------------------------------------------------------------------------- /lib/component/lazy_load_indexed_stack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/lazy_load_indexed_stack.dart -------------------------------------------------------------------------------- /lib/component/line_two.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/line_two.dart -------------------------------------------------------------------------------- /lib/component/linear_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/linear_button.dart -------------------------------------------------------------------------------- /lib/component/loading_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/loading_widget.dart -------------------------------------------------------------------------------- /lib/component/menu_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/menu_item.dart -------------------------------------------------------------------------------- /lib/component/nil.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/nil.dart -------------------------------------------------------------------------------- /lib/component/no_shadow_scroll_behavior.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/no_shadow_scroll_behavior.dart -------------------------------------------------------------------------------- /lib/component/page_goods_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/page_goods_list.dart -------------------------------------------------------------------------------- /lib/component/page_goods_list_skeleton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/page_goods_list_skeleton.dart -------------------------------------------------------------------------------- /lib/component/page_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/page_menu.dart -------------------------------------------------------------------------------- /lib/component/persistentHeader/sliver_header_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/persistentHeader/sliver_header_builder.dart -------------------------------------------------------------------------------- /lib/component/persistentHeader/sliver_persistent_header_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/persistentHeader/sliver_persistent_header_delegate.dart -------------------------------------------------------------------------------- /lib/component/persistentHeaderToBox/extra_info_constraints.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/persistentHeaderToBox/extra_info_constraints.dart -------------------------------------------------------------------------------- /lib/component/persistentHeaderToBox/sliver_persistent_header_box_builder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/persistentHeaderToBox/sliver_persistent_header_box_builder.dart -------------------------------------------------------------------------------- /lib/component/photoGallery/photo_gallery.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/photoGallery/photo_gallery.dart -------------------------------------------------------------------------------- /lib/component/photoGallery/photo_gallery_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/photoGallery/photo_gallery_dialog.dart -------------------------------------------------------------------------------- /lib/component/skeleton/placeholders.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/skeleton/placeholders.dart -------------------------------------------------------------------------------- /lib/component/stepper/stepper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/stepper/stepper.dart -------------------------------------------------------------------------------- /lib/component/stepper/style.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/stepper/style.dart -------------------------------------------------------------------------------- /lib/component/swiper/swiper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/swiper/swiper.dart -------------------------------------------------------------------------------- /lib/component/text_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/component/text_item.dart -------------------------------------------------------------------------------- /lib/config/env_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/config/env_config.dart -------------------------------------------------------------------------------- /lib/config/global_configs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/config/global_configs.dart -------------------------------------------------------------------------------- /lib/generated/assets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/generated/assets.dart -------------------------------------------------------------------------------- /lib/http/base_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/http/base_response.dart -------------------------------------------------------------------------------- /lib/http/code.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/http/code.dart -------------------------------------------------------------------------------- /lib/http/http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/http/http.dart -------------------------------------------------------------------------------- /lib/http/interceptors/debounce_Interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/http/interceptors/debounce_Interceptor.dart -------------------------------------------------------------------------------- /lib/http/interceptors/network_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/http/interceptors/network_interceptor.dart -------------------------------------------------------------------------------- /lib/http/interceptors/response_interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/http/interceptors/response_interceptor.dart -------------------------------------------------------------------------------- /lib/http/interceptors/token_Interceptor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/http/interceptors/token_Interceptor.dart -------------------------------------------------------------------------------- /lib/listener/http_error_listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/listener/http_error_listener.dart -------------------------------------------------------------------------------- /lib/main_dev.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/main_dev.dart -------------------------------------------------------------------------------- /lib/main_prd.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/main_prd.dart -------------------------------------------------------------------------------- /lib/middleware/auth_middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/middleware/auth_middleware.dart -------------------------------------------------------------------------------- /lib/mixin/image_picker_mixin.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/mixin/image_picker_mixin.dart -------------------------------------------------------------------------------- /lib/models/cart_goods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/cart_goods.dart -------------------------------------------------------------------------------- /lib/models/cart_goods.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/cart_goods.g.dart -------------------------------------------------------------------------------- /lib/models/goods_detail_res.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/goods_detail_res.dart -------------------------------------------------------------------------------- /lib/models/goods_detail_res.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/goods_detail_res.g.dart -------------------------------------------------------------------------------- /lib/models/goods_page_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/goods_page_info.dart -------------------------------------------------------------------------------- /lib/models/goods_page_info.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/goods_page_info.g.dart -------------------------------------------------------------------------------- /lib/models/home_page_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/home_page_info.dart -------------------------------------------------------------------------------- /lib/models/home_page_info.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/home_page_info.g.dart -------------------------------------------------------------------------------- /lib/models/login_response.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/login_response.dart -------------------------------------------------------------------------------- /lib/models/login_response.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/login_response.g.dart -------------------------------------------------------------------------------- /lib/models/mine_menu_tab_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/mine_menu_tab_info.dart -------------------------------------------------------------------------------- /lib/models/mine_menu_tab_info.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/mine_menu_tab_info.g.dart -------------------------------------------------------------------------------- /lib/models/page_args.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/page_args.dart -------------------------------------------------------------------------------- /lib/models/page_args.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/page_args.g.dart -------------------------------------------------------------------------------- /lib/models/primary_category_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/primary_category_list.dart -------------------------------------------------------------------------------- /lib/models/primary_category_list.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/primary_category_list.g.dart -------------------------------------------------------------------------------- /lib/models/second_group_category_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/second_group_category_info.dart -------------------------------------------------------------------------------- /lib/models/second_group_category_info.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/models/second_group_category_info.g.dart -------------------------------------------------------------------------------- /lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/routes.dart -------------------------------------------------------------------------------- /lib/translation/messages.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/translation/messages.dart -------------------------------------------------------------------------------- /lib/view/main/main_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/main/main_bindings.dart -------------------------------------------------------------------------------- /lib/view/main/main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/main/main_page.dart -------------------------------------------------------------------------------- /lib/view/page/cart/cart_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/cart/cart_controller.dart -------------------------------------------------------------------------------- /lib/view/page/cart/cart_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/cart/cart_page.dart -------------------------------------------------------------------------------- /lib/view/page/cart/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/cart/service.dart -------------------------------------------------------------------------------- /lib/view/page/cart/widget/cart_goods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/cart/widget/cart_goods.dart -------------------------------------------------------------------------------- /lib/view/page/cart/widget/cart_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/cart/widget/cart_header.dart -------------------------------------------------------------------------------- /lib/view/page/cart/widget/condition.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/cart/widget/condition.dart -------------------------------------------------------------------------------- /lib/view/page/cart/widget/goods_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/cart/widget/goods_list.dart -------------------------------------------------------------------------------- /lib/view/page/cart/widget/probably_like.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/cart/widget/probably_like.dart -------------------------------------------------------------------------------- /lib/view/page/cart/widget/total_settlement.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/cart/widget/total_settlement.dart -------------------------------------------------------------------------------- /lib/view/page/category/category_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/category/category_controller.dart -------------------------------------------------------------------------------- /lib/view/page/category/category_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/category/category_page.dart -------------------------------------------------------------------------------- /lib/view/page/category/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/category/service.dart -------------------------------------------------------------------------------- /lib/view/page/category/util.dart: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/view/page/category/widget/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/category/widget/header.dart -------------------------------------------------------------------------------- /lib/view/page/category/widget/left_cate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/category/widget/left_cate.dart -------------------------------------------------------------------------------- /lib/view/page/category/widget/right_group.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/category/widget/right_group.dart -------------------------------------------------------------------------------- /lib/view/page/detail/detail_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/detail_bindings.dart -------------------------------------------------------------------------------- /lib/view/page/detail/detail_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/detail_controller.dart -------------------------------------------------------------------------------- /lib/view/page/detail/detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/detail_page.dart -------------------------------------------------------------------------------- /lib/view/page/detail/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/service.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/address_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/address_info.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/appraise_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/appraise_info.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/back_to_top.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/back_to_top.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/detail_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/detail_card.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/fixed_bottom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/fixed_bottom.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/goods_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/goods_info.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/img_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/img_slider.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/sku_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/sku_info.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/store_goods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/store_goods.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/store_goods_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/store_goods_header.dart -------------------------------------------------------------------------------- /lib/view/page/detail/widget/tab_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/detail/widget/tab_header.dart -------------------------------------------------------------------------------- /lib/view/page/example/Interlaced_animation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/Interlaced_animation.dart -------------------------------------------------------------------------------- /lib/view/page/example/breathing_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/breathing_method.dart -------------------------------------------------------------------------------- /lib/view/page/example/complete_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/complete_form.dart -------------------------------------------------------------------------------- /lib/view/page/example/contact_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/contact_list.dart -------------------------------------------------------------------------------- /lib/view/page/example/file_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/file_preview.dart -------------------------------------------------------------------------------- /lib/view/page/example/gesture_spring.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/gesture_spring.dart -------------------------------------------------------------------------------- /lib/view/page/example/sample_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/sample_list.dart -------------------------------------------------------------------------------- /lib/view/page/example/snow_man.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/snow_man.dart -------------------------------------------------------------------------------- /lib/view/page/example/stamp_paper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/stamp_paper.dart -------------------------------------------------------------------------------- /lib/view/page/example/util/color_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/util/color_utils.dart -------------------------------------------------------------------------------- /lib/view/page/example/video_simple.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/video_simple.dart -------------------------------------------------------------------------------- /lib/view/page/example/widget/list_item.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/example/widget/list_item.dart -------------------------------------------------------------------------------- /lib/view/page/home/home_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/home/home_controller.dart -------------------------------------------------------------------------------- /lib/view/page/home/home_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/home/home_page.dart -------------------------------------------------------------------------------- /lib/view/page/home/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/home/service.dart -------------------------------------------------------------------------------- /lib/view/page/home/util.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/home/util.dart -------------------------------------------------------------------------------- /lib/view/page/home/widget/adv_img.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/home/widget/adv_img.dart -------------------------------------------------------------------------------- /lib/view/page/home/widget/gallery_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/home/widget/gallery_list.dart -------------------------------------------------------------------------------- /lib/view/page/home/widget/home_skeleton.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/home/widget/home_skeleton.dart -------------------------------------------------------------------------------- /lib/view/page/home/widget/menu_slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/home/widget/menu_slider.dart -------------------------------------------------------------------------------- /lib/view/page/home/widget/search_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/home/widget/search_header.dart -------------------------------------------------------------------------------- /lib/view/page/home/widget/tab_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/home/widget/tab_list.dart -------------------------------------------------------------------------------- /lib/view/page/login/login_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/login/login_bindings.dart -------------------------------------------------------------------------------- /lib/view/page/login/login_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/login/login_controller.dart -------------------------------------------------------------------------------- /lib/view/page/login/login_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/login/login_page.dart -------------------------------------------------------------------------------- /lib/view/page/login/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/login/service.dart -------------------------------------------------------------------------------- /lib/view/page/login/widget/login_form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/login/widget/login_form.dart -------------------------------------------------------------------------------- /lib/view/page/login/widget/login_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/login/widget/login_header.dart -------------------------------------------------------------------------------- /lib/view/page/login/widget/login_other_way.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/login/widget/login_other_way.dart -------------------------------------------------------------------------------- /lib/view/page/mine/mine_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/mine/mine_controller.dart -------------------------------------------------------------------------------- /lib/view/page/mine/mine_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/mine/mine_page.dart -------------------------------------------------------------------------------- /lib/view/page/mine/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/mine/service.dart -------------------------------------------------------------------------------- /lib/view/page/mine/widget/info_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/mine/widget/info_header.dart -------------------------------------------------------------------------------- /lib/view/page/mine/widget/order_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/mine/widget/order_card.dart -------------------------------------------------------------------------------- /lib/view/page/mine/widget/single_line_menu.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/mine/widget/single_line_menu.dart -------------------------------------------------------------------------------- /lib/view/page/mine/widget/tab_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/mine/widget/tab_list.dart -------------------------------------------------------------------------------- /lib/view/page/order/generate/generate_order.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/order/generate/generate_order.dart -------------------------------------------------------------------------------- /lib/view/page/order/generate/widget/bottom.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/order/generate/widget/bottom.dart -------------------------------------------------------------------------------- /lib/view/page/order/generate/widget/default_address.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/order/generate/widget/default_address.dart -------------------------------------------------------------------------------- /lib/view/page/order/generate/widget/order_goods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/order/generate/widget/order_goods.dart -------------------------------------------------------------------------------- /lib/view/page/order/generate/widget/order_invoice.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/order/generate/widget/order_invoice.dart -------------------------------------------------------------------------------- /lib/view/page/order/generate/widget/order_summation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/order/generate/widget/order_summation.dart -------------------------------------------------------------------------------- /lib/view/page/personal/personal_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/page/personal/personal_info.dart -------------------------------------------------------------------------------- /lib/view/system/page404.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/system/page404.dart -------------------------------------------------------------------------------- /lib/view/vebview/type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/vebview/type.dart -------------------------------------------------------------------------------- /lib/view/vebview/webview_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/vebview/webview_page.dart -------------------------------------------------------------------------------- /lib/view/vebview/widget/floating_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/lib/view/vebview/widget/floating_header.dart -------------------------------------------------------------------------------- /mock_server/api/cart/queryCartGoodsList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/cart/queryCartGoodsList.json -------------------------------------------------------------------------------- /mock_server/api/cart/queryMaybeLikeList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/cart/queryMaybeLikeList.json -------------------------------------------------------------------------------- /mock_server/api/category/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/category/list.json -------------------------------------------------------------------------------- /mock_server/api/category/queryContentByCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/category/queryContentByCategory.json -------------------------------------------------------------------------------- /mock_server/api/common/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/common/login.json -------------------------------------------------------------------------------- /mock_server/api/common/queryGoodsListByPage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/common/queryGoodsListByPage.json -------------------------------------------------------------------------------- /mock_server/api/detail/queryGoodsDetail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/detail/queryGoodsDetail.json -------------------------------------------------------------------------------- /mock_server/api/detail/queryStoreGoodsList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/detail/queryStoreGoodsList.json -------------------------------------------------------------------------------- /mock_server/api/example/queryContactList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/example/queryContactList.json -------------------------------------------------------------------------------- /mock_server/api/home/queryHomePageInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/home/queryHomePageInfo.json -------------------------------------------------------------------------------- /mock_server/api/mine/queryMineInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/mine/queryMineInfo.json -------------------------------------------------------------------------------- /mock_server/api/mine/queryRecommendList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/api/mine/queryRecommendList.json -------------------------------------------------------------------------------- /mock_server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/mock_server/package.json -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/route.md -------------------------------------------------------------------------------- /web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/web/favicon.png -------------------------------------------------------------------------------- /web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/web/icons/Icon-192.png -------------------------------------------------------------------------------- /web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/web/icons/Icon-512.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/web/index.html -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuoguoDad/jd_mall_flutter/HEAD/web/manifest.json --------------------------------------------------------------------------------