├── .gitignore
├── .metadata
├── .vscode
├── launch.json
└── settings.json
├── README.md
├── analysis_options.yaml
├── android
├── .gitignore
├── app
│ ├── build.gradle
│ └── src
│ │ ├── debug
│ │ └── AndroidManifest.xml
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── kotlin
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── flutter_ui_challenge
│ │ │ │ └── MainActivity.kt
│ │ └── res
│ │ │ ├── drawable-v21
│ │ │ └── launch_background.xml
│ │ │ ├── drawable
│ │ │ └── launch_background.xml
│ │ │ ├── mipmap-hdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-mdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── mipmap-xxxhdpi
│ │ │ └── ic_launcher.png
│ │ │ ├── values-night
│ │ │ └── styles.xml
│ │ │ └── values
│ │ │ └── styles.xml
│ │ └── profile
│ │ └── AndroidManifest.xml
├── build.gradle
├── gradle.properties
├── gradle
│ └── wrapper
│ │ └── gradle-wrapper.properties
└── settings.gradle
├── assets
├── data
│ ├── bank.json
│ ├── bank_2.json
│ ├── city.json
│ ├── sort_0.json
│ ├── sort_1.json
│ └── sort_2.json
├── fonts
│ └── Roboto-Thin.ttf
├── images
│ ├── account
│ │ ├── bg.png
│ │ ├── del.png
│ │ ├── gongshang.png
│ │ ├── jianhang.png
│ │ ├── jiaohang.png
│ │ ├── minsheng.png
│ │ ├── nonghang.png
│ │ ├── pufa.png
│ │ ├── rmb.png
│ │ ├── selected.png
│ │ ├── sm.png
│ │ ├── sqcg.png
│ │ ├── sqsb.png
│ │ ├── txwxz.png
│ │ ├── txxz.png
│ │ ├── wechat.png
│ │ ├── xingye.png
│ │ ├── yhk.png
│ │ ├── zhaohang.png
│ │ ├── zhonghang.png
│ │ └── zhongxin.png
│ ├── app_start_1.webp
│ ├── app_start_2.webp
│ ├── app_start_3.webp
│ ├── goods
│ │ ├── add.png
│ │ ├── add2.png
│ │ ├── ellipsis.png
│ │ ├── expand.png
│ │ ├── goods_delete.png
│ │ ├── goods_size_1.png
│ │ ├── goods_size_2.png
│ │ ├── icon_dialog_close.png
│ │ ├── icon_goods.png
│ │ ├── icon_sm.png
│ │ ├── jt.png
│ │ ├── scanning.png
│ │ ├── search.png
│ │ ├── xz.png
│ │ └── ydss.png
│ ├── home
│ │ ├── icon_commodity.png
│ │ ├── icon_order.png
│ │ ├── icon_shop.png
│ │ └── icon_statistics.png
│ ├── ic_arrow_right.png
│ ├── ic_back_black.png
│ ├── login
│ │ ├── qyg_shop_icon_delete.png
│ │ ├── qyg_shop_icon_display.png
│ │ └── qyg_shop_icon_hide.png
│ ├── logo.png
│ ├── none.png
│ ├── order
│ │ ├── dark
│ │ │ ├── icon_address.png
│ │ │ ├── icon_dps_n.png
│ │ │ ├── icon_dps_s.png
│ │ │ ├── icon_dwc_n.png
│ │ │ ├── icon_dwc_s.png
│ │ │ ├── icon_phone.png
│ │ │ ├── icon_selected.png
│ │ │ ├── icon_xdd_n.png
│ │ │ ├── icon_xdd_s.png
│ │ │ ├── icon_yqx_n.png
│ │ │ ├── icon_yqx_s.png
│ │ │ ├── icon_ywc_n.png
│ │ │ └── icon_ywc_s.png
│ │ ├── dps_n.png
│ │ ├── dps_s.png
│ │ ├── dwc_n.png
│ │ ├── dwc_s.png
│ │ ├── ic_check.png
│ │ ├── icon_address.png
│ │ ├── icon_avatar.png
│ │ ├── icon_calendar.png
│ │ ├── icon_calendar_dark.png
│ │ ├── icon_goods.png
│ │ ├── icon_phone.png
│ │ ├── icon_search.png
│ │ ├── order_bg.png
│ │ ├── order_bg1.png
│ │ ├── order_delete.png
│ │ ├── order_search.png
│ │ ├── xdd_n.png
│ │ ├── xdd_s.png
│ │ ├── yqx_n.png
│ │ ├── yqx_s.png
│ │ ├── ywc_n.png
│ │ └── ywc_s.png
│ ├── shop
│ │ ├── dark_dpsz.png
│ │ ├── dark_txzh.png
│ │ ├── dark_zhls.png
│ │ ├── dark_zjgl.png
│ │ ├── dpsz.png
│ │ ├── message.png
│ │ ├── setting.png
│ │ ├── tj.png
│ │ ├── tx.png
│ │ ├── txzh.png
│ │ ├── wxzyf.png
│ │ ├── xz.png
│ │ ├── xztm.png
│ │ ├── xzyf.png
│ │ ├── zhls.png
│ │ ├── zjgl.png
│ │ └── zybq.png
│ ├── state
│ │ ├── zwdd.png
│ │ ├── zwsp.png
│ │ ├── zwwl.png
│ │ ├── zwxx.png
│ │ └── zwzh.png
│ ├── statistic
│ │ ├── champion.png
│ │ ├── chart_fg.png
│ │ ├── down.png
│ │ ├── dps.png
│ │ ├── icon_selected.png
│ │ ├── jrjye.png
│ │ ├── jyetj.png
│ │ ├── runnerup.png
│ │ ├── sjzs.png
│ │ ├── sptj.png
│ │ ├── statistic_bg.png
│ │ ├── statistic_bg1.png
│ │ ├── thirdplace.png
│ │ ├── up.png
│ │ └── xdd.png
│ ├── store
│ │ ├── 2.0x
│ │ │ ├── icon_failure.png
│ │ │ ├── icon_success.png
│ │ │ ├── icon_wait.png
│ │ │ └── icon_zj.png
│ │ ├── 3.0x
│ │ │ ├── icon_failure.png
│ │ │ ├── icon_success.png
│ │ │ ├── icon_wait.png
│ │ │ └── icon_zj.png
│ │ ├── icon_failure.png
│ │ ├── icon_success.png
│ │ ├── icon_wait.png
│ │ └── icon_zj.png
│ └── update_head.jpg
└── lottie
│ └── bunny_new_mouth.json
├── 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@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@2x.png
│ │ ├── Icon-App-40x40@3x.png
│ │ ├── Icon-App-60x60@2x.png
│ │ └── Icon-App-60x60@3x.png
│ ├── Contents.json
│ └── logo.imageset
│ │ ├── Contents.json
│ │ └── logo.png
│ ├── Base.lproj
│ ├── LaunchScreen.storyboard
│ └── Main.storyboard
│ ├── Info.plist
│ └── Runner-Bridging-Header.h
├── lib
├── change_app_page.dart
├── examples
│ ├── flutter_deer
│ │ ├── common
│ │ │ ├── config_providers.dart
│ │ │ ├── constant.dart
│ │ │ ├── deer_storage.dart
│ │ │ └── user_provider.dart
│ │ ├── deer_app.dart
│ │ ├── modules
│ │ │ ├── goods
│ │ │ │ ├── goods_route.dart
│ │ │ │ ├── models
│ │ │ │ │ └── goods_type_model
│ │ │ │ │ │ ├── goods_type_model.dart
│ │ │ │ │ │ ├── goods_type_model.freezed.dart
│ │ │ │ │ │ └── goods_type_model.g.dart
│ │ │ │ ├── page
│ │ │ │ │ ├── goods_edit_page.dart
│ │ │ │ │ └── goods_page.dart
│ │ │ │ ├── providers
│ │ │ │ │ ├── goods_edit_providers.dart
│ │ │ │ │ ├── goods_list_providers.dart
│ │ │ │ │ ├── goods_providers.dart
│ │ │ │ │ └── goods_type_choose_providers.dart
│ │ │ │ └── widgets
│ │ │ │ │ ├── goods_head_title.dart
│ │ │ │ │ ├── goods_list_view.dart
│ │ │ │ │ ├── goods_page_option.dart
│ │ │ │ │ ├── goods_spec_edit.dart
│ │ │ │ │ ├── goods_type_choose.dart
│ │ │ │ │ └── goods_type_choose_sheet.dart
│ │ │ ├── home
│ │ │ │ ├── common_router.dart
│ │ │ │ ├── deer_main_page.dart
│ │ │ │ ├── loading_page.dart
│ │ │ │ ├── providers
│ │ │ │ │ └── home_providers.dart
│ │ │ │ ├── splash_page.dart
│ │ │ │ └── web_page.dart
│ │ │ ├── login
│ │ │ │ ├── login_route.dart
│ │ │ │ ├── page
│ │ │ │ │ ├── code_login_page.dart
│ │ │ │ │ └── login_page.dart
│ │ │ │ └── providers
│ │ │ │ │ └── code_login_providers.dart
│ │ │ ├── order
│ │ │ │ ├── models
│ │ │ │ │ └── order_models.dart
│ │ │ │ ├── order_router.dart
│ │ │ │ ├── page
│ │ │ │ │ ├── order_detail_page.dart
│ │ │ │ │ ├── order_list_page.dart
│ │ │ │ │ ├── order_page.dart
│ │ │ │ │ ├── order_search_page.dart
│ │ │ │ │ └── order_track_page.dart
│ │ │ │ ├── provider
│ │ │ │ │ ├── order_header_provider.dart
│ │ │ │ │ └── order_list_provider.dart
│ │ │ │ └── widgets
│ │ │ │ │ ├── order_details_payment_dialog.dart
│ │ │ │ │ ├── order_header.dart
│ │ │ │ │ ├── order_list_item.dart
│ │ │ │ │ ├── order_tag_item.dart
│ │ │ │ │ ├── order_type_choose.dart
│ │ │ │ │ └── payment_choose_dialog.dart
│ │ │ ├── settings
│ │ │ │ ├── page
│ │ │ │ │ └── setting_page.dart
│ │ │ │ ├── setting_router.dart
│ │ │ │ └── widgets
│ │ │ │ │ └── setting_item.dart
│ │ │ ├── shop
│ │ │ │ ├── model
│ │ │ │ │ ├── bank_model
│ │ │ │ │ │ ├── bank_model.dart
│ │ │ │ │ │ └── bank_model.g.dart
│ │ │ │ │ ├── city_model
│ │ │ │ │ │ ├── city_model.dart
│ │ │ │ │ │ └── city_model.g.dart
│ │ │ │ │ ├── shop_config_model
│ │ │ │ │ │ ├── shop_config_model.dart
│ │ │ │ │ │ └── shop_config_model.g.dart
│ │ │ │ │ ├── shop_record_model.dart
│ │ │ │ │ └── shop_withdraw_models.dart
│ │ │ │ ├── page
│ │ │ │ │ ├── shop_add_withdraw_page.dart
│ │ │ │ │ ├── shop_capital_page.dart
│ │ │ │ │ ├── shop_config_edit_page.dart
│ │ │ │ │ ├── shop_config_page.dart
│ │ │ │ │ ├── shop_info_choose_page.dart
│ │ │ │ │ ├── shop_page.dart
│ │ │ │ │ ├── shop_record_page.dart
│ │ │ │ │ ├── shop_withdraw_account_page.dart
│ │ │ │ │ ├── shop_withdraw_change_pwd_page.dart
│ │ │ │ │ ├── shop_withdraw_choose_page.dart
│ │ │ │ │ ├── shop_withdraw_page.dart
│ │ │ │ │ └── shop_withdraw_pwd_page.dart
│ │ │ │ ├── provider
│ │ │ │ │ ├── shop_config_providers.dart
│ │ │ │ │ ├── shop_info_choose_providers.dart
│ │ │ │ │ ├── shop_record_providers.dart
│ │ │ │ │ ├── shop_witdraw_add_providers.dart
│ │ │ │ │ ├── shop_withdraw_account_providers.dart
│ │ │ │ │ ├── shop_withdraw_choose_providers.dart
│ │ │ │ │ └── shop_withdraw_providers.dart
│ │ │ │ ├── shop_router.dart
│ │ │ │ └── widgets
│ │ │ │ │ ├── shop_actions.dart
│ │ │ │ │ ├── shop_config_freight.dart
│ │ │ │ │ ├── shop_config_payment.dart
│ │ │ │ │ ├── shop_config_price_edit.dart
│ │ │ │ │ ├── shop_header.dart
│ │ │ │ │ ├── shop_info_choose_indicator.dart
│ │ │ │ │ ├── shop_pwd_code_view.dart
│ │ │ │ │ ├── shop_pwd_dialog.dart
│ │ │ │ │ ├── shop_pwd_sms_dialog.dart
│ │ │ │ │ ├── shop_withdraw_account.dart
│ │ │ │ │ ├── shop_withdraw_account_item.dart
│ │ │ │ │ └── shop_withdraw_account_type_choose.dart
│ │ │ └── statistics
│ │ │ │ ├── models
│ │ │ │ └── statistics_goods_model.dart
│ │ │ │ ├── page
│ │ │ │ ├── statistics_goods_page.dart
│ │ │ │ ├── statistics_info_page.dart
│ │ │ │ └── statistics_page.dart
│ │ │ │ ├── provider
│ │ │ │ ├── statistics_calendar_providers.dart
│ │ │ │ └── statistics_goods_providers.dart
│ │ │ │ ├── statistics_router.dart
│ │ │ │ ├── utils
│ │ │ │ └── calendar_utils.dart
│ │ │ │ └── widgets
│ │ │ │ ├── statistics_calendar.dart
│ │ │ │ ├── statistics_circle_chart.dart
│ │ │ │ ├── statistics_goods_circle_chart.dart
│ │ │ │ ├── statistics_goods_circle_painter.dart
│ │ │ │ ├── statistics_goods_item.dart
│ │ │ │ ├── statistics_header_content.dart
│ │ │ │ ├── statistics_header_delegate.dart
│ │ │ │ ├── statistics_item.dart
│ │ │ │ ├── statistics_line_chart.dart
│ │ │ │ ├── statistics_order_chart.dart
│ │ │ │ └── statistics_order_item.dart
│ │ ├── res
│ │ │ ├── colors.dart
│ │ │ └── text_styles.dart
│ │ ├── routers
│ │ │ ├── deer_routers.dart
│ │ │ ├── deer_theme.dart
│ │ │ ├── navigator_interpector.dart
│ │ │ ├── navigator_utils.dart
│ │ │ └── not_found_page.dart
│ │ ├── utils
│ │ │ ├── dialog_utils.dart
│ │ │ ├── image_utils.dart
│ │ │ ├── overlay_utils.dart
│ │ │ ├── page_request.dart
│ │ │ ├── random_utils.dart
│ │ │ ├── screen_untils.dart
│ │ │ ├── string_extension.dart
│ │ │ └── toast.dart
│ │ └── widgets
│ │ │ ├── action_sheet.dart
│ │ │ ├── alert_view.dart
│ │ │ ├── always_keep_alive.dart
│ │ │ ├── code_view.dart
│ │ │ ├── common_dialog.dart
│ │ │ ├── custom_show_loading.dart
│ │ │ ├── custon_back_button.dart
│ │ │ ├── empty_view.dart
│ │ │ ├── input_dialog.dart
│ │ │ ├── list_click_item.dart
│ │ │ ├── load_image.dart
│ │ │ ├── load_more_footer.dart
│ │ │ ├── menu_filter.dart
│ │ │ ├── my_app_bar.dart
│ │ │ ├── my_edit_scroll_view.dart
│ │ │ ├── my_scroll_view.dart
│ │ │ ├── number_key_borad.dart
│ │ │ ├── option_selected_view.dart
│ │ │ ├── search_bar.dart
│ │ │ └── simple_textfield.dart
│ └── ui_chanllenge
│ │ ├── curves
│ │ ├── curve_type.dart
│ │ ├── curves_item.dart
│ │ └── curves_page.dart
│ │ ├── custom_slider
│ │ ├── custom_slider.dart
│ │ └── custom_slider_page.dart
│ │ ├── flutter_challenge_page.dart
│ │ ├── routes.dart
│ │ └── theme.dart
└── main.dart
├── linux
├── .gitignore
├── CMakeLists.txt
├── flutter
│ ├── CMakeLists.txt
│ ├── generated_plugin_registrant.cc
│ ├── generated_plugin_registrant.h
│ └── generated_plugins.cmake
├── main.cc
├── my_application.cc
└── my_application.h
├── macos
├── .gitignore
├── Flutter
│ ├── Flutter-Debug.xcconfig
│ ├── Flutter-Release.xcconfig
│ └── GeneratedPluginRegistrant.swift
├── Podfile
├── Podfile.lock
├── Runner.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ └── xcshareddata
│ │ │ └── IDEWorkspaceChecks.plist
│ └── xcshareddata
│ │ └── xcschemes
│ │ └── Runner.xcscheme
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
└── Runner
│ ├── AppDelegate.swift
│ ├── Assets.xcassets
│ └── AppIcon.appiconset
│ │ ├── Contents.json
│ │ ├── app_icon_1024.png
│ │ ├── app_icon_128.png
│ │ ├── app_icon_16.png
│ │ ├── app_icon_256.png
│ │ ├── app_icon_32.png
│ │ ├── app_icon_512.png
│ │ └── app_icon_64.png
│ ├── Base.lproj
│ └── MainMenu.xib
│ ├── Configs
│ ├── AppInfo.xcconfig
│ ├── Debug.xcconfig
│ ├── Release.xcconfig
│ └── Warnings.xcconfig
│ ├── DebugProfile.entitlements
│ ├── Info.plist
│ ├── MainFlutterWindow.swift
│ └── Release.entitlements
├── pubspec.lock
├── pubspec.yaml
├── web
├── favicon.png
├── icons
│ ├── Icon-192.png
│ ├── Icon-512.png
│ ├── Icon-maskable-192.png
│ └── Icon-maskable-512.png
├── index.html
└── manifest.json
└── windows
├── .gitignore
├── CMakeLists.txt
├── flutter
├── CMakeLists.txt
├── generated_plugin_registrant.cc
├── generated_plugin_registrant.h
└── generated_plugins.cmake
└── runner
├── CMakeLists.txt
├── Runner.rc
├── flutter_window.cpp
├── flutter_window.h
├── main.cpp
├── resource.h
├── resources
└── app_icon.ico
├── runner.exe.manifest
├── utils.cpp
├── utils.h
├── win32_window.cpp
└── win32_window.h
/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.log
4 | *.pyc
5 | *.swp
6 | .DS_Store
7 | .atom/
8 | .buildlog/
9 | .history
10 | .svn/
11 | migrate_working_dir/
12 |
13 | # IntelliJ related
14 | *.iml
15 | *.ipr
16 | *.iws
17 | .idea/
18 |
19 | # The .vscode folder contains launch configuration and tasks you configure in
20 | # VS Code which you may wish to be included in version control, so this line
21 | # is commented out by default.
22 | #.vscode/
23 |
24 | # Flutter/Dart/Pub related
25 | **/doc/api/
26 | **/ios/Flutter/.last_build_id
27 | .dart_tool/
28 | .flutter-plugins
29 | .flutter-plugins-dependencies
30 | .packages
31 | .pub-cache/
32 | .pub/
33 | /build/
34 |
35 | # Web related
36 |
37 | # Symbolication related
38 | app.*.symbols
39 |
40 | # Obfuscation related
41 | app.*.map.json
42 |
43 | # Android Studio will place build artifacts here
44 | /android/app/debug
45 | /android/app/profile
46 | /android/app/release
47 |
--------------------------------------------------------------------------------
/.metadata:
--------------------------------------------------------------------------------
1 | # This file tracks properties of this Flutter project.
2 | # Used by Flutter tool to assess capabilities and perform upgrades etc.
3 | #
4 | # This file should be version controlled.
5 |
6 | version:
7 | revision: f1875d570e39de09040c8f79aa13cc56baab8db1
8 | channel: stable
9 |
10 | project_type: app
11 |
12 | # Tracks metadata for the flutter migrate command
13 | migration:
14 | platforms:
15 | - platform: root
16 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
17 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
18 | - platform: android
19 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
20 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
21 | - platform: ios
22 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
23 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
24 | - platform: linux
25 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
26 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
27 | - platform: macos
28 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
29 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
30 | - platform: web
31 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
32 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
33 | - platform: windows
34 | create_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
35 | base_revision: f1875d570e39de09040c8f79aa13cc56baab8db1
36 |
37 | # User provided section
38 |
39 | # List of Local paths (relative to this file) that should be
40 | # ignored by the migrate tool.
41 | #
42 | # Files that are not part of the templates will be ignored by default.
43 | unmanaged_files:
44 | - 'lib/main.dart'
45 | - 'ios/Runner.xcodeproj/project.pbxproj'
46 |
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
1 | {
2 | // 使用 IntelliSense 了解相关属性。
3 | // 悬停以查看现有属性的描述。
4 | // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
5 | "version": "0.2.0",
6 | "configurations": [
7 | {
8 | "name": "flutter_ui_challenge",
9 | "request": "launch",
10 | "type": "dart"
11 | },
12 | {
13 | "name": "flutter_ui_challenge (profile mode)",
14 | "request": "launch",
15 | "type": "dart",
16 | "flutterMode": "profile"
17 | },
18 | {
19 | "name": "flutter_ui_challenge (release mode)",
20 | "request": "launch",
21 | "type": "dart",
22 | "flutterMode": "release"
23 | }
24 | ]
25 | }
26 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "java.configuration.updateBuildConfiguration": "automatic",
3 | "dart.flutterSdkPath": "/Users/Ming/development/flutter-3.10.5",
4 | "dart.sdkPath": "/Users/Ming/development/flutter-3.10.5/bin/cache/dart-sdk"
5 | }
6 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # flutter_ui_challenge
2 |
3 | 后续可能包含任何flutter实现,目前主要是仿写flutter_deer
4 |
5 | # flutter_deer
6 |
7 | 效果图见下方
8 |
9 | |  |  |  |  |
10 | | :--------------------------------: | :---------------------------------: | :-------------------------------: | :-------------------------------: |
11 | |  |  |  |  |  |
12 |  |  | |
13 |
14 |
--------------------------------------------------------------------------------
/analysis_options.yaml:
--------------------------------------------------------------------------------
1 | # This file configures the analyzer, which statically analyzes Dart code to
2 | # check for errors, warnings, and lints.
3 | #
4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6 | # invoked from the command line by running `flutter analyze`.
7 |
8 | # The following line activates a set of recommended lints for Flutter apps,
9 | # packages, and plugins designed to encourage good coding practices.
10 | include: package:flutter_lints/flutter.yaml
11 |
12 | linter:
13 | # The lint rules applied to this project can be customized in the
14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml`
15 | # included above or to enable additional rules. A list of all available lints
16 | # and their documentation is published at
17 | # https://dart-lang.github.io/linter/lints/index.html.
18 | #
19 | # Instead of disabling a lint rule for the entire project in the
20 | # section below, it can also be suppressed for a single line of code
21 | # or a specific dart file by using the `// ignore: name_of_lint` and
22 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file
23 | # producing the lint.
24 | rules:
25 | # avoid_print: false # Uncomment to disable the `avoid_print` rule
26 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
27 |
28 | # Additional information about this file can be found at
29 | # https://dart.dev/guides/language/analysis-options
30 |
--------------------------------------------------------------------------------
/android/.gitignore:
--------------------------------------------------------------------------------
1 | gradle-wrapper.jar
2 | /.gradle
3 | /captures/
4 | /gradlew
5 | /gradlew.bat
6 | /local.properties
7 | GeneratedPluginRegistrant.java
8 |
9 | # Remember to never publicly share your keystore.
10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11 | key.properties
12 | **/*.keystore
13 | **/*.jks
14 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | def localProperties = new Properties()
2 | def localPropertiesFile = rootProject.file('local.properties')
3 | if (localPropertiesFile.exists()) {
4 | localPropertiesFile.withReader('UTF-8') { reader ->
5 | localProperties.load(reader)
6 | }
7 | }
8 |
9 | def flutterRoot = localProperties.getProperty('flutter.sdk')
10 | if (flutterRoot == null) {
11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
12 | }
13 |
14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
15 | if (flutterVersionCode == null) {
16 | flutterVersionCode = '1'
17 | }
18 |
19 | def flutterVersionName = localProperties.getProperty('flutter.versionName')
20 | if (flutterVersionName == null) {
21 | flutterVersionName = '1.0'
22 | }
23 |
24 | apply plugin: 'com.android.application'
25 | apply plugin: 'kotlin-android'
26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
27 |
28 | android {
29 | compileSdkVersion flutter.compileSdkVersion
30 | ndkVersion flutter.ndkVersion
31 |
32 | compileOptions {
33 | sourceCompatibility JavaVersion.VERSION_1_8
34 | targetCompatibility JavaVersion.VERSION_1_8
35 | }
36 |
37 | kotlinOptions {
38 | jvmTarget = '1.8'
39 | }
40 |
41 | sourceSets {
42 | main.java.srcDirs += 'src/main/kotlin'
43 | }
44 |
45 | defaultConfig {
46 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
47 | applicationId "com.example.flutter_ui_challenge"
48 | // You can update the following values to match your application needs.
49 | // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
50 | minSdkVersion localProperties.getProperty('flutter.minSdkVersion').toInteger()
51 | targetSdkVersion localProperties.getProperty('flutter.targetSdkVersion').toInteger()
52 | versionCode flutterVersionCode.toInteger()
53 | versionName flutterVersionName
54 | }
55 |
56 |
57 | buildTypes {
58 | release {
59 | // TODO: Add your own signing config for the release build.
60 | // Signing with the debug keys for now, so `flutter run --release` works.
61 | signingConfig signingConfigs.debug
62 | }
63 | }
64 | }
65 |
66 | flutter {
67 | source '../..'
68 | }
69 |
70 | dependencies {
71 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
72 | }
73 |
--------------------------------------------------------------------------------
/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
7 |
15 |
19 |
23 |
24 |
25 |
26 |
27 |
28 |
30 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/com/example/flutter_ui_challenge/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.example.flutter_ui_challenge
2 |
3 | import io.flutter.embedding.android.FlutterActivity
4 |
5 | class MainActivity: FlutterActivity() {
6 | }
7 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-v21/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values-night/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = '1.6.10'
3 | repositories {
4 | google()
5 | mavenCentral()
6 | }
7 |
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:7.1.2'
10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 | }
12 | }
13 |
14 | allprojects {
15 | repositories {
16 | google()
17 | mavenCentral()
18 | }
19 | }
20 |
21 | rootProject.buildDir = '../build'
22 | subprojects {
23 | project.buildDir = "${rootProject.buildDir}/${project.name}"
24 | }
25 | subprojects {
26 | project.evaluationDependsOn(':app')
27 | }
28 |
29 | task clean(type: Delete) {
30 | delete rootProject.buildDir
31 | }
32 |
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx1536M
2 | android.useAndroidX=true
3 | android.enableJetifier=true
4 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Jun 23 08:50:38 CEST 2017
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
7 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
4 | def properties = new Properties()
5 |
6 | assert localPropertiesFile.exists()
7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
8 |
9 | def flutterSdkPath = properties.getProperty("flutter.sdk")
10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
12 |
--------------------------------------------------------------------------------
/assets/data/sort_0.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "id": "1",
4 | "name": "超市便利"
5 | },
6 | {
7 | "id": "2",
8 | "name": "生鲜果蔬"
9 | },
10 | {
11 | "id": "3",
12 | "name": "零食小吃"
13 | },
14 | {
15 | "id": "4",
16 | "name": "美食餐饮"
17 | },
18 | {
19 | "id": "5",
20 | "name": "鲜花烘培"
21 | },
22 | {
23 | "id": "6",
24 | "name": "生活服务"
25 | },
26 | {
27 | "id": "7",
28 | "name": "其他"
29 | },
30 | {
31 | "id": "8",
32 | "name": "综合"
33 | },
34 | {
35 | "id": "10",
36 | "name": "美容个护"
37 | },
38 | {
39 | "id": "11",
40 | "name": "家居生活"
41 | },
42 | {
43 | "id": "12",
44 | "name": "服饰箱包"
45 | },
46 | {
47 | "id": "13",
48 | "name": "母婴玩具"
49 | },
50 | {
51 | "id": "15",
52 | "name": "海淘进口"
53 | },
54 | {
55 | "id": "755",
56 | "name": "快递代收"
57 | },
58 | {
59 | "id": "756",
60 | "name": "食品保健"
61 | },
62 | {
63 | "id": "764",
64 | "name": "家居生活"
65 | },
66 | {
67 | "id": "769",
68 | "name": "米面杂粮"
69 | },
70 | {
71 | "id": "786",
72 | "name": "水果生鲜"
73 | },
74 | {
75 | "id": "807",
76 | "name": "社区健身"
77 | },
78 | {
79 | "id": "811",
80 | "name": "艺术礼品"
81 | },
82 | {
83 | "id": "814",
84 | "name": "今日特卖"
85 | },
86 | {
87 | "id": "816",
88 | "name": "周边旅游"
89 | },
90 | {
91 | "id": "820",
92 | "name": "家装建材"
93 | },
94 | {
95 | "id": "823",
96 | "name": "虚拟商品"
97 | },
98 | {
99 | "id": "14057",
100 | "name": "生活用品"
101 | },
102 | {
103 | "id": "14181",
104 | "name": "手机数码"
105 | }
106 | ]
--------------------------------------------------------------------------------
/assets/data/sort_1.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "id": "15677",
4 | "name": "厨房用具"
5 | },
6 | {
7 | "id": "15690",
8 | "name": "精美餐具"
9 | },
10 | {
11 | "id": "15698",
12 | "name": "家纺"
13 | },
14 | {
15 | "id": "15717",
16 | "name": "家具"
17 | },
18 | {
19 | "id": "15740",
20 | "name": "灯具"
21 | },
22 | {
23 | "id": "15755",
24 | "name": "生活日用"
25 | },
26 | {
27 | "id": "15765",
28 | "name": "宠物用品"
29 | },
30 | {
31 | "id": "15773",
32 | "name": "家装建材"
33 | },
34 | {
35 | "id": "15795",
36 | "name": "赠品"
37 | },
38 | {
39 | "id": "15797",
40 | "name": "家装软饰"
41 | },
42 | {
43 | "id": "15814",
44 | "name": "收纳用品"
45 | },
46 | {
47 | "id": "26541",
48 | "name": "演出票务"
49 | },
50 | {
51 | "id": "26551",
52 | "name": "健康体检"
53 | },
54 | {
55 | "id": "26554",
56 | "name": "教育培训"
57 | },
58 | {
59 | "id": "26561",
60 | "name": "汽车保养"
61 | },
62 | {
63 | "id": "26563",
64 | "name": "影视会员"
65 | },
66 | {
67 | "id": "26565",
68 | "name": "摄影、摄像"
69 | }
70 | ]
--------------------------------------------------------------------------------
/assets/data/sort_2.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "id": "15691",
4 | "name": "酒具/杯具"
5 | },
6 | {
7 | "id": "15692",
8 | "name": "水具"
9 | },
10 | {
11 | "id": "15693",
12 | "name": "筷勺/刀叉"
13 | },
14 | {
15 | "id": "15694",
16 | "name": "碗碟"
17 | },
18 | {
19 | "id": "15695",
20 | "name": "组合套装"
21 | },
22 | {
23 | "id": "15696",
24 | "name": "美食工具"
25 | },
26 | {
27 | "id": "15697",
28 | "name": "茶具/咖啡具"
29 | }
30 | ]
--------------------------------------------------------------------------------
/assets/fonts/Roboto-Thin.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/fonts/Roboto-Thin.ttf
--------------------------------------------------------------------------------
/assets/images/account/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/bg.png
--------------------------------------------------------------------------------
/assets/images/account/del.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/del.png
--------------------------------------------------------------------------------
/assets/images/account/gongshang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/gongshang.png
--------------------------------------------------------------------------------
/assets/images/account/jianhang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/jianhang.png
--------------------------------------------------------------------------------
/assets/images/account/jiaohang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/jiaohang.png
--------------------------------------------------------------------------------
/assets/images/account/minsheng.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/minsheng.png
--------------------------------------------------------------------------------
/assets/images/account/nonghang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/nonghang.png
--------------------------------------------------------------------------------
/assets/images/account/pufa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/pufa.png
--------------------------------------------------------------------------------
/assets/images/account/rmb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/rmb.png
--------------------------------------------------------------------------------
/assets/images/account/selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/selected.png
--------------------------------------------------------------------------------
/assets/images/account/sm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/sm.png
--------------------------------------------------------------------------------
/assets/images/account/sqcg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/sqcg.png
--------------------------------------------------------------------------------
/assets/images/account/sqsb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/sqsb.png
--------------------------------------------------------------------------------
/assets/images/account/txwxz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/txwxz.png
--------------------------------------------------------------------------------
/assets/images/account/txxz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/txxz.png
--------------------------------------------------------------------------------
/assets/images/account/wechat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/wechat.png
--------------------------------------------------------------------------------
/assets/images/account/xingye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/xingye.png
--------------------------------------------------------------------------------
/assets/images/account/yhk.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/yhk.png
--------------------------------------------------------------------------------
/assets/images/account/zhaohang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/zhaohang.png
--------------------------------------------------------------------------------
/assets/images/account/zhonghang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/zhonghang.png
--------------------------------------------------------------------------------
/assets/images/account/zhongxin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/account/zhongxin.png
--------------------------------------------------------------------------------
/assets/images/app_start_1.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/app_start_1.webp
--------------------------------------------------------------------------------
/assets/images/app_start_2.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/app_start_2.webp
--------------------------------------------------------------------------------
/assets/images/app_start_3.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/app_start_3.webp
--------------------------------------------------------------------------------
/assets/images/goods/add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/add.png
--------------------------------------------------------------------------------
/assets/images/goods/add2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/add2.png
--------------------------------------------------------------------------------
/assets/images/goods/ellipsis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/ellipsis.png
--------------------------------------------------------------------------------
/assets/images/goods/expand.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/expand.png
--------------------------------------------------------------------------------
/assets/images/goods/goods_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/goods_delete.png
--------------------------------------------------------------------------------
/assets/images/goods/goods_size_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/goods_size_1.png
--------------------------------------------------------------------------------
/assets/images/goods/goods_size_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/goods_size_2.png
--------------------------------------------------------------------------------
/assets/images/goods/icon_dialog_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/icon_dialog_close.png
--------------------------------------------------------------------------------
/assets/images/goods/icon_goods.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/icon_goods.png
--------------------------------------------------------------------------------
/assets/images/goods/icon_sm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/icon_sm.png
--------------------------------------------------------------------------------
/assets/images/goods/jt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/jt.png
--------------------------------------------------------------------------------
/assets/images/goods/scanning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/scanning.png
--------------------------------------------------------------------------------
/assets/images/goods/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/search.png
--------------------------------------------------------------------------------
/assets/images/goods/xz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/xz.png
--------------------------------------------------------------------------------
/assets/images/goods/ydss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/goods/ydss.png
--------------------------------------------------------------------------------
/assets/images/home/icon_commodity.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/home/icon_commodity.png
--------------------------------------------------------------------------------
/assets/images/home/icon_order.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/home/icon_order.png
--------------------------------------------------------------------------------
/assets/images/home/icon_shop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/home/icon_shop.png
--------------------------------------------------------------------------------
/assets/images/home/icon_statistics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/home/icon_statistics.png
--------------------------------------------------------------------------------
/assets/images/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/ic_arrow_right.png
--------------------------------------------------------------------------------
/assets/images/ic_back_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/ic_back_black.png
--------------------------------------------------------------------------------
/assets/images/login/qyg_shop_icon_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/login/qyg_shop_icon_delete.png
--------------------------------------------------------------------------------
/assets/images/login/qyg_shop_icon_display.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/login/qyg_shop_icon_display.png
--------------------------------------------------------------------------------
/assets/images/login/qyg_shop_icon_hide.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/login/qyg_shop_icon_hide.png
--------------------------------------------------------------------------------
/assets/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/logo.png
--------------------------------------------------------------------------------
/assets/images/none.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/none.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_address.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_address.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_dps_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_dps_n.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_dps_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_dps_s.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_dwc_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_dwc_n.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_dwc_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_dwc_s.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_phone.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_selected.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_xdd_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_xdd_n.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_xdd_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_xdd_s.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_yqx_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_yqx_n.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_yqx_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_yqx_s.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_ywc_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_ywc_n.png
--------------------------------------------------------------------------------
/assets/images/order/dark/icon_ywc_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dark/icon_ywc_s.png
--------------------------------------------------------------------------------
/assets/images/order/dps_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dps_n.png
--------------------------------------------------------------------------------
/assets/images/order/dps_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dps_s.png
--------------------------------------------------------------------------------
/assets/images/order/dwc_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dwc_n.png
--------------------------------------------------------------------------------
/assets/images/order/dwc_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/dwc_s.png
--------------------------------------------------------------------------------
/assets/images/order/ic_check.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/ic_check.png
--------------------------------------------------------------------------------
/assets/images/order/icon_address.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/icon_address.png
--------------------------------------------------------------------------------
/assets/images/order/icon_avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/icon_avatar.png
--------------------------------------------------------------------------------
/assets/images/order/icon_calendar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/icon_calendar.png
--------------------------------------------------------------------------------
/assets/images/order/icon_calendar_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/icon_calendar_dark.png
--------------------------------------------------------------------------------
/assets/images/order/icon_goods.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/icon_goods.png
--------------------------------------------------------------------------------
/assets/images/order/icon_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/icon_phone.png
--------------------------------------------------------------------------------
/assets/images/order/icon_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/icon_search.png
--------------------------------------------------------------------------------
/assets/images/order/order_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/order_bg.png
--------------------------------------------------------------------------------
/assets/images/order/order_bg1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/order_bg1.png
--------------------------------------------------------------------------------
/assets/images/order/order_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/order_delete.png
--------------------------------------------------------------------------------
/assets/images/order/order_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/order_search.png
--------------------------------------------------------------------------------
/assets/images/order/xdd_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/xdd_n.png
--------------------------------------------------------------------------------
/assets/images/order/xdd_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/xdd_s.png
--------------------------------------------------------------------------------
/assets/images/order/yqx_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/yqx_n.png
--------------------------------------------------------------------------------
/assets/images/order/yqx_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/yqx_s.png
--------------------------------------------------------------------------------
/assets/images/order/ywc_n.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/ywc_n.png
--------------------------------------------------------------------------------
/assets/images/order/ywc_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/order/ywc_s.png
--------------------------------------------------------------------------------
/assets/images/shop/dark_dpsz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/dark_dpsz.png
--------------------------------------------------------------------------------
/assets/images/shop/dark_txzh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/dark_txzh.png
--------------------------------------------------------------------------------
/assets/images/shop/dark_zhls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/dark_zhls.png
--------------------------------------------------------------------------------
/assets/images/shop/dark_zjgl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/dark_zjgl.png
--------------------------------------------------------------------------------
/assets/images/shop/dpsz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/dpsz.png
--------------------------------------------------------------------------------
/assets/images/shop/message.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/message.png
--------------------------------------------------------------------------------
/assets/images/shop/setting.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/setting.png
--------------------------------------------------------------------------------
/assets/images/shop/tj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/tj.png
--------------------------------------------------------------------------------
/assets/images/shop/tx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/tx.png
--------------------------------------------------------------------------------
/assets/images/shop/txzh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/txzh.png
--------------------------------------------------------------------------------
/assets/images/shop/wxzyf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/wxzyf.png
--------------------------------------------------------------------------------
/assets/images/shop/xz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/xz.png
--------------------------------------------------------------------------------
/assets/images/shop/xztm.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/xztm.png
--------------------------------------------------------------------------------
/assets/images/shop/xzyf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/xzyf.png
--------------------------------------------------------------------------------
/assets/images/shop/zhls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/zhls.png
--------------------------------------------------------------------------------
/assets/images/shop/zjgl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/zjgl.png
--------------------------------------------------------------------------------
/assets/images/shop/zybq.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/shop/zybq.png
--------------------------------------------------------------------------------
/assets/images/state/zwdd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/state/zwdd.png
--------------------------------------------------------------------------------
/assets/images/state/zwsp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/state/zwsp.png
--------------------------------------------------------------------------------
/assets/images/state/zwwl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/state/zwwl.png
--------------------------------------------------------------------------------
/assets/images/state/zwxx.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/state/zwxx.png
--------------------------------------------------------------------------------
/assets/images/state/zwzh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/state/zwzh.png
--------------------------------------------------------------------------------
/assets/images/statistic/champion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/champion.png
--------------------------------------------------------------------------------
/assets/images/statistic/chart_fg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/chart_fg.png
--------------------------------------------------------------------------------
/assets/images/statistic/down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/down.png
--------------------------------------------------------------------------------
/assets/images/statistic/dps.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/dps.png
--------------------------------------------------------------------------------
/assets/images/statistic/icon_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/icon_selected.png
--------------------------------------------------------------------------------
/assets/images/statistic/jrjye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/jrjye.png
--------------------------------------------------------------------------------
/assets/images/statistic/jyetj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/jyetj.png
--------------------------------------------------------------------------------
/assets/images/statistic/runnerup.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/runnerup.png
--------------------------------------------------------------------------------
/assets/images/statistic/sjzs.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/sjzs.png
--------------------------------------------------------------------------------
/assets/images/statistic/sptj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/sptj.png
--------------------------------------------------------------------------------
/assets/images/statistic/statistic_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/statistic_bg.png
--------------------------------------------------------------------------------
/assets/images/statistic/statistic_bg1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/statistic_bg1.png
--------------------------------------------------------------------------------
/assets/images/statistic/thirdplace.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/thirdplace.png
--------------------------------------------------------------------------------
/assets/images/statistic/up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/up.png
--------------------------------------------------------------------------------
/assets/images/statistic/xdd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/statistic/xdd.png
--------------------------------------------------------------------------------
/assets/images/store/2.0x/icon_failure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/2.0x/icon_failure.png
--------------------------------------------------------------------------------
/assets/images/store/2.0x/icon_success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/2.0x/icon_success.png
--------------------------------------------------------------------------------
/assets/images/store/2.0x/icon_wait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/2.0x/icon_wait.png
--------------------------------------------------------------------------------
/assets/images/store/2.0x/icon_zj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/2.0x/icon_zj.png
--------------------------------------------------------------------------------
/assets/images/store/3.0x/icon_failure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/3.0x/icon_failure.png
--------------------------------------------------------------------------------
/assets/images/store/3.0x/icon_success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/3.0x/icon_success.png
--------------------------------------------------------------------------------
/assets/images/store/3.0x/icon_wait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/3.0x/icon_wait.png
--------------------------------------------------------------------------------
/assets/images/store/3.0x/icon_zj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/3.0x/icon_zj.png
--------------------------------------------------------------------------------
/assets/images/store/icon_failure.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/icon_failure.png
--------------------------------------------------------------------------------
/assets/images/store/icon_success.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/icon_success.png
--------------------------------------------------------------------------------
/assets/images/store/icon_wait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/icon_wait.png
--------------------------------------------------------------------------------
/assets/images/store/icon_zj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/store/icon_zj.png
--------------------------------------------------------------------------------
/assets/images/update_head.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/assets/images/update_head.jpg
--------------------------------------------------------------------------------
/ios/.gitignore:
--------------------------------------------------------------------------------
1 | **/dgph
2 | *.mode1v3
3 | *.mode2v3
4 | *.moved-aside
5 | *.pbxuser
6 | *.perspectivev3
7 | **/*sync/
8 | .sconsign.dblite
9 | .tags*
10 | **/.vagrant/
11 | **/DerivedData/
12 | Icon?
13 | **/Pods/
14 | **/.symlinks/
15 | profile
16 | xcuserdata
17 | **/.generated/
18 | Flutter/App.framework
19 | Flutter/Flutter.framework
20 | Flutter/Flutter.podspec
21 | Flutter/Generated.xcconfig
22 | Flutter/ephemeral/
23 | Flutter/app.flx
24 | Flutter/app.zip
25 | Flutter/flutter_assets/
26 | Flutter/flutter_export_environment.sh
27 | ServiceDefinitions.json
28 | Runner/GeneratedPluginRegistrant.*
29 |
30 | # Exceptions to above rules.
31 | !default.mode1v3
32 | !default.mode2v3
33 | !default.pbxuser
34 | !default.perspectivev3
35 |
--------------------------------------------------------------------------------
/ios/Flutter/AppFrameworkInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | zh_CN
7 | CFBundleExecutable
8 | App
9 | CFBundleIdentifier
10 | io.flutter.flutter.app
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | App
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1.0
23 | MinimumOSVersion
24 | 11.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Podfile:
--------------------------------------------------------------------------------
1 | # Uncomment this line to define a global platform for your project
2 | # platform :ios, '11.0'
3 |
4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true'
6 |
7 | project 'Runner', {
8 | 'Debug' => :debug,
9 | 'Profile' => :release,
10 | 'Release' => :release,
11 | }
12 |
13 | def flutter_root
14 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
15 | unless File.exist?(generated_xcode_build_settings_path)
16 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
17 | end
18 |
19 | File.foreach(generated_xcode_build_settings_path) do |line|
20 | matches = line.match(/FLUTTER_ROOT\=(.*)/)
21 | return matches[1].strip if matches
22 | end
23 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
24 | end
25 |
26 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
27 |
28 | flutter_ios_podfile_setup
29 |
30 | target 'Runner' do
31 | use_frameworks!
32 | use_modular_headers!
33 |
34 | flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
35 | end
36 |
37 | post_install do |installer|
38 | installer.pods_project.targets.each do |target|
39 | flutter_additional_ios_build_settings(target)
40 | end
41 | end
42 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - Flutter (1.0.0)
3 | - image_picker_ios (0.0.1):
4 | - Flutter
5 | - path_provider_foundation (0.0.1):
6 | - Flutter
7 | - FlutterMacOS
8 | - shared_preferences_foundation (0.0.1):
9 | - Flutter
10 | - FlutterMacOS
11 | - webview_flutter_wkwebview (0.0.1):
12 | - Flutter
13 |
14 | DEPENDENCIES:
15 | - Flutter (from `Flutter`)
16 | - image_picker_ios (from `.symlinks/plugins/image_picker_ios/ios`)
17 | - path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
18 | - shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`)
19 | - webview_flutter_wkwebview (from `.symlinks/plugins/webview_flutter_wkwebview/ios`)
20 |
21 | EXTERNAL SOURCES:
22 | Flutter:
23 | :path: Flutter
24 | image_picker_ios:
25 | :path: ".symlinks/plugins/image_picker_ios/ios"
26 | path_provider_foundation:
27 | :path: ".symlinks/plugins/path_provider_foundation/darwin"
28 | shared_preferences_foundation:
29 | :path: ".symlinks/plugins/shared_preferences_foundation/darwin"
30 | webview_flutter_wkwebview:
31 | :path: ".symlinks/plugins/webview_flutter_wkwebview/ios"
32 |
33 | SPEC CHECKSUMS:
34 | Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
35 | image_picker_ios: 4a8aadfbb6dc30ad5141a2ce3832af9214a705b5
36 | path_provider_foundation: eaf5b3e458fc0e5fbb9940fb09980e853fe058b8
37 | shared_preferences_foundation: e2dae3258e06f44cc55f49d42024fd8dd03c590c
38 | webview_flutter_wkwebview: 2e2d318f21a5e036e2c3f26171342e95908bd60a
39 |
40 | PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3
41 |
42 | COCOAPODS: 1.12.1
43 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import Flutter
3 |
4 | @UIApplicationMain
5 | @objc class AppDelegate: FlutterAppDelegate {
6 | override func application(
7 | _ application: UIApplication,
8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
9 | ) -> Bool {
10 | GeneratedPluginRegistrant.register(with: self)
11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "filename" : "Icon-App-20x20@2x.png",
5 | "idiom" : "iphone",
6 | "scale" : "2x",
7 | "size" : "20x20"
8 | },
9 | {
10 | "filename" : "Icon-App-20x20@3x.png",
11 | "idiom" : "iphone",
12 | "scale" : "3x",
13 | "size" : "20x20"
14 | },
15 | {
16 | "filename" : "Icon-App-29x29@1x.png",
17 | "idiom" : "iphone",
18 | "scale" : "1x",
19 | "size" : "29x29"
20 | },
21 | {
22 | "filename" : "Icon-App-29x29@2x.png",
23 | "idiom" : "iphone",
24 | "scale" : "2x",
25 | "size" : "29x29"
26 | },
27 | {
28 | "filename" : "Icon-App-29x29@3x.png",
29 | "idiom" : "iphone",
30 | "scale" : "3x",
31 | "size" : "29x29"
32 | },
33 | {
34 | "filename" : "Icon-App-40x40@2x.png",
35 | "idiom" : "iphone",
36 | "scale" : "2x",
37 | "size" : "40x40"
38 | },
39 | {
40 | "filename" : "Icon-App-40x40@3x.png",
41 | "idiom" : "iphone",
42 | "scale" : "3x",
43 | "size" : "40x40"
44 | },
45 | {
46 | "filename" : "Icon-App-60x60@2x.png",
47 | "idiom" : "iphone",
48 | "scale" : "2x",
49 | "size" : "60x60"
50 | },
51 | {
52 | "filename" : "Icon-App-60x60@3x.png",
53 | "idiom" : "iphone",
54 | "scale" : "3x",
55 | "size" : "60x60"
56 | },
57 | {
58 | "filename" : "Icon-App-1024x1024@1x.png",
59 | "idiom" : "ios-marketing",
60 | "scale" : "1x",
61 | "size" : "1024x1024"
62 | }
63 | ],
64 | "info" : {
65 | "author" : "xcode",
66 | "version" : 1
67 | }
68 | }
69 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/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/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/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/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/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/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/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/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/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/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/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/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "author" : "xcode",
4 | "version" : 1
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/logo.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "filename" : "logo.png",
5 | "idiom" : "universal",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "scale" : "2x"
11 | },
12 | {
13 | "idiom" : "universal",
14 | "scale" : "3x"
15 | }
16 | ],
17 | "info" : {
18 | "author" : "xcode",
19 | "version" : 1
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/logo.imageset/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MengLiMing/flutter_ui_challenge/6f775061bd7ffd9525f84499a3f2590e71e7b91f/ios/Runner/Assets.xcassets/logo.imageset/logo.png
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/ios/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CADisableMinimumFrameDurationOnPhone
6 |
7 | CFBundleDevelopmentRegion
8 | $(DEVELOPMENT_LANGUAGE)
9 | CFBundleDisplayName
10 | Flutter Ui Challenge
11 | CFBundleExecutable
12 | $(EXECUTABLE_NAME)
13 | CFBundleIdentifier
14 | $(PRODUCT_BUNDLE_IDENTIFIER)
15 | CFBundleInfoDictionaryVersion
16 | 6.0
17 | CFBundleName
18 | flutter_ui_challenge
19 | CFBundlePackageType
20 | APPL
21 | CFBundleShortVersionString
22 | $(FLUTTER_BUILD_NAME)
23 | CFBundleVersion
24 | $(FLUTTER_BUILD_NUMBER)
25 | LSApplicationCategoryType
26 |
27 | LSRequiresIPhoneOS
28 |
29 | NSPhotoLibraryAddUsageDescription
30 | 我们需要您的照片库存储权限
31 | NSPhotoLibraryUsageDescription
32 | 我们需要您的照片库权限
33 | UILaunchStoryboardName
34 | LaunchScreen
35 | UIMainStoryboardFile
36 | Main
37 | UISupportedInterfaceOrientations
38 |
39 | UIInterfaceOrientationPortrait
40 |
41 | UIViewControllerBasedStatusBarAppearance
42 |
43 | UIApplicationSupportsIndirectInputEvents
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
2 |
--------------------------------------------------------------------------------
/lib/change_app_page.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 | import 'package:flutter_riverpod/flutter_riverpod.dart';
3 | import 'package:flutter_ui_challenge/examples/flutter_deer/deer_app.dart';
4 | import 'package:flutter_ui_challenge/examples/flutter_deer/widgets/load_image.dart';
5 | import 'package:flutter_ui_challenge/examples/flutter_deer/widgets/my_app_bar.dart';
6 | import 'package:flutter_ui_challenge/examples/ui_chanllenge/flutter_challenge_page.dart';
7 | import 'package:flutter_ui_challenge/main.dart';
8 |
9 | class ChangeAppPage extends ConsumerWidget {
10 | const ChangeAppPage({Key? key}) : super(key: key);
11 |
12 | @override
13 | Widget build(BuildContext context, WidgetRef ref) {
14 | return Scaffold(
15 | appBar: const MyAppBar(
16 | title: Text('切换App'),
17 | ),
18 | body: GridView(
19 | padding: const EdgeInsets.all(10),
20 | gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
21 | crossAxisCount: 2,
22 | mainAxisSpacing: 10,
23 | crossAxisSpacing: 10,
24 | ),
25 | children: [
26 | _changleApp(ref),
27 | _deerApp(ref),
28 | ],
29 | ),
30 | );
31 | }
32 |
33 | Widget _changleApp(WidgetRef ref) {
34 | return GestureDetector(
35 | onTap: () {
36 | ref.read(mainAppProvider.state).state = const FlutterChallengeApp();
37 | },
38 | child: _gridContainer(
39 | const Text('UI Chanllenge'),
40 | ));
41 | }
42 |
43 | Widget _deerApp(WidgetRef ref) {
44 | return GestureDetector(
45 | onTap: () {
46 | ref.read(mainAppProvider.state).state = DeerApp();
47 | },
48 | child: _gridContainer(const LoadAssetImage(
49 | 'logo',
50 | width: 80,
51 | height: 80,
52 | )),
53 | );
54 | }
55 |
56 | Widget _gridContainer(Widget child) {
57 | return Container(
58 | alignment: Alignment.center,
59 | decoration: const BoxDecoration(
60 | color: Colors.white,
61 | boxShadow: [
62 | BoxShadow(color: Colors.black38, blurRadius: 2, offset: Offset.zero),
63 | ],
64 | ),
65 | child: child,
66 | );
67 | }
68 | }
69 |
--------------------------------------------------------------------------------
/lib/examples/flutter_deer/common/config_providers.dart:
--------------------------------------------------------------------------------
1 | import 'package:equatable/equatable.dart';
2 | import 'package:flutter/material.dart';
3 | import 'package:flutter_riverpod/flutter_riverpod.dart';
4 | import 'package:flutter_ui_challenge/examples/flutter_deer/common/deer_storage.dart';
5 | import 'package:shared_preferences/shared_preferences.dart';
6 |
7 | class ConfigProviders {
8 | static final configInit = FutureProvider.autoDispose((ref) async {
9 | final result = await Future.wait(
10 | [
11 | SharedPreferences.getInstance(),
12 | ],
13 | );
14 |
15 | DeerStorage.sp = result[0];
16 |
17 | return;
18 | });
19 |
20 | static final config =
21 | StateNotifierProvider((ref) {
22 | return AppConfigStateNotifier(
23 | AppConfigState(
24 | hadShowGuide: DeerStorage.hadShowGuide,
25 | themeMode: DeerStorage.themeMode,
26 | ),
27 | );
28 | });
29 |
30 | static final hadShowGuide = Provider((ref) {
31 | return ref.watch(config).hadShowGuide;
32 | });
33 |
34 | static final themeMode = Provider((ref) {
35 | return ref.watch(config).themeMode;
36 | });
37 | }
38 |
39 | class AppConfigStateNotifier extends StateNotifier {
40 | AppConfigStateNotifier(AppConfigState config) : super(config);
41 |
42 | set hadShowGuide(bool value) {
43 | DeerStorage.hadShowGuide = value;
44 | state = state.copyWith(hadShowGuide: value);
45 | }
46 |
47 | /// 修改主题模式
48 | void changeDarkMode(ThemeMode mode) {
49 | DeerStorage.themeMode = mode;
50 |
51 | state = state.copyWith(themeMode: mode);
52 | }
53 | }
54 |
55 | @immutable
56 | class AppConfigState extends Equatable {
57 | final bool hadShowGuide;
58 | final ThemeMode themeMode;
59 |
60 | /// 调试相关
61 |
62 | const AppConfigState({
63 | required this.hadShowGuide,
64 | required this.themeMode,
65 | });
66 |
67 | AppConfigState copyWith({
68 | bool? hadShowGuide,
69 | ThemeMode? themeMode,
70 | }) {
71 | return AppConfigState(
72 | hadShowGuide: hadShowGuide ?? this.hadShowGuide,
73 | themeMode: themeMode ?? this.themeMode,
74 | );
75 | }
76 |
77 | @override
78 | List