Full Code of toly1994328/FlutterUnit for AI

master 5ea68ae13cff cached
1054 files
2.8 MB
814.2k tokens
3198 symbols
1 requests
Download .txt
Showing preview only (3,226K chars total). Download the full file or copy to clipboard to get everything.
Repository: toly1994328/FlutterUnit
Branch: master
Commit: 5ea68ae13cff
Files: 1054
Total size: 2.8 MB

Directory structure:
gitextract_p937gcv0/

├── .gitignore
├── .metadata
├── LICENSE
├── README-EN.md
├── README.md
├── analysis_options.yaml
├── android/
│   ├── .gitignore
│   ├── app/
│   │   ├── build.gradle.kts
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── debug/
│   │       │   └── AndroidManifest.xml
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   ├── kotlin/
│   │       │   │   └── com/
│   │       │   │       └── toly1994/
│   │       │   │           └── flutter_unit/
│   │       │   │               └── MainActivity.kt
│   │       │   └── res/
│   │       │       ├── drawable/
│   │       │       │   └── launch_background.xml
│   │       │       ├── drawable-v21/
│   │       │       │   └── launch_background.xml
│   │       │       ├── values/
│   │       │       │   └── styles.xml
│   │       │       └── values-night/
│   │       │           └── styles.xml
│   │       └── profile/
│   │           └── AndroidManifest.xml
│   ├── build/
│   │   └── reports/
│   │       └── problems/
│   │           └── problems-report.html
│   ├── build.gradle.kts
│   ├── gradle/
│   │   └── wrapper/
│   │       └── gradle-wrapper.properties
│   ├── gradle.properties
│   └── settings.gradle.kts
├── assets/
│   ├── data/
│   │   ├── gallery_info.json
│   │   ├── packages/
│   │   │   └── data.json
│   │   └── web/
│   │       ├── node.json
│   │       └── widget.json
│   └── version.json
├── desiredFileName.txt
├── devtools_options.yaml
├── doc/
│   ├── development/
│   │   └── architecture.md
│   └── version/
│       ├── 3.1.0.md
│       └── 3.2.0.md
├── ios/
│   ├── .gitignore
│   ├── Flutter/
│   │   ├── AppFrameworkInfo.plist
│   │   ├── Debug.xcconfig
│   │   └── Release.xcconfig
│   ├── Podfile
│   ├── Runner/
│   │   ├── AppDelegate.swift
│   │   ├── Assets.xcassets/
│   │   │   ├── AppIcon.appiconset/
│   │   │   │   └── Contents.json
│   │   │   └── LaunchImage.imageset/
│   │   │       ├── Contents.json
│   │   │       └── README.md
│   │   ├── Base.lproj/
│   │   │   ├── LaunchScreen.storyboard
│   │   │   └── Main.storyboard
│   │   ├── Info.plist
│   │   └── Runner-Bridging-Header.h
│   ├── 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
├── l10n.yaml
├── lib/
│   ├── main.dart
│   └── src/
│       ├── flutter_unit.dart
│       ├── l10n/
│       │   ├── arb/
│       │   │   ├── app_en.arb
│       │   │   └── app_zh.arb
│       │   ├── gen/
│       │   │   ├── app_l10n.dart
│       │   │   ├── app_l10n_en.dart
│       │   │   └── app_l10n_zh.dart
│       │   └── locale_provider.dart
│       ├── navigation/
│       │   ├── model/
│       │   │   └── app_tab.dart
│       │   ├── router/
│       │   │   ├── app_route.dart
│       │   │   ├── system/
│       │   │   │   ├── app.dart
│       │   │   │   ├── global.dart
│       │   │   │   └── settings.dart
│       │   │   └── widgets/
│       │   │       ├── collection_route.dart
│       │   │       └── widgets_route.dart
│       │   └── view/
│       │       ├── app_bloc_provider.dart
│       │       ├── desktop/
│       │       │   ├── flutter_unit_desk_navigation.dart
│       │       │   ├── locale_change_menu.dart
│       │       │   ├── menu_bar_leading.dart
│       │       │   ├── menu_bar_tail.dart
│       │       │   ├── theme_model_switch_icon.dart
│       │       │   ├── toly_unit_menu_cell.dart
│       │       │   └── unit_shortcuts_scope.dart
│       │       └── mobile/
│       │           ├── carousel.dart
│       │           ├── news.dart
│       │           ├── pure_bottom_bar.dart
│       │           └── unit_navigation.dart
│       └── starter/
│           ├── bridge/
│           │   └── unit_bridge.dart
│           ├── fx_application.dart
│           ├── start_repository.dart
│           └── view/
│               ├── error/
│               │   └── app_start_error.dart
│               └── splash/
│                   ├── Flutter_unit_splash.dart
│                   └── flutter_unit_text.dart
├── linux/
│   ├── .gitignore
│   ├── CMakeLists.txt
│   ├── flutter/
│   │   ├── CMakeLists.txt
│   │   ├── generated_plugin_registrant.cc
│   │   ├── generated_plugin_registrant.h
│   │   └── generated_plugins.cmake
│   ├── main.cc
│   ├── my_application.cc
│   └── my_application.h
├── macos/
│   ├── .gitignore
│   ├── Flutter/
│   │   ├── Flutter-Debug.xcconfig
│   │   ├── Flutter-Release.xcconfig
│   │   └── GeneratedPluginRegistrant.swift
│   ├── Podfile
│   ├── Runner/
│   │   ├── AppDelegate.swift
│   │   ├── Assets.xcassets/
│   │   │   └── AppIcon.appiconset/
│   │   │       └── Contents.json
│   │   ├── Base.lproj/
│   │   │   └── MainMenu.xib
│   │   ├── Configs/
│   │   │   ├── AppInfo.xcconfig
│   │   │   ├── Debug.xcconfig
│   │   │   ├── Release.xcconfig
│   │   │   └── Warnings.xcconfig
│   │   ├── DebugProfile.entitlements
│   │   ├── Info.plist
│   │   ├── MainFlutterWindow.swift
│   │   └── Release.entitlements
│   ├── Runner.xcodeproj/
│   │   ├── project.pbxproj
│   │   ├── project.xcworkspace/
│   │   │   └── xcshareddata/
│   │   │       └── IDEWorkspaceChecks.plist
│   │   └── xcshareddata/
│   │       └── xcschemes/
│   │           └── Runner.xcscheme
│   └── Runner.xcworkspace/
│       ├── contents.xcworkspacedata
│       └── xcshareddata/
│           └── IDEWorkspaceChecks.plist
├── modules/
│   ├── basic_system/
│   │   ├── app/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── app/
│   │   │   │   │   ├── action/
│   │   │   │   │   │   ├── action.dart
│   │   │   │   │   │   └── url.dart
│   │   │   │   │   ├── cons/
│   │   │   │   │   │   ├── cons.dart
│   │   │   │   │   │   ├── global_value.dart
│   │   │   │   │   │   ├── path_unit.dart
│   │   │   │   │   │   ├── sp.dart
│   │   │   │   │   │   └── str_unit.dart
│   │   │   │   │   ├── res/
│   │   │   │   │   │   └── toly_icon.dart
│   │   │   │   │   ├── router/
│   │   │   │   │   │   └── app_route.dart
│   │   │   │   │   ├── style/
│   │   │   │   │   │   ├── behavior/
│   │   │   │   │   │   │   └── no_scroll_behavior.dart
│   │   │   │   │   │   ├── gap.dart
│   │   │   │   │   │   ├── shape/
│   │   │   │   │   │   │   ├── coupon_shape_border.dart
│   │   │   │   │   │   │   └── techno_shape.dart
│   │   │   │   │   │   ├── unit_color.dart
│   │   │   │   │   │   └── unit_text_style.dart
│   │   │   │   │   └── theme/
│   │   │   │   │       ├── app_theme.dart
│   │   │   │   │       └── size_unit.dart
│   │   │   │   ├── app.dart
│   │   │   │   ├── app_config/
│   │   │   │   │   ├── app_config.dart
│   │   │   │   │   ├── bloc/
│   │   │   │   │   │   ├── bloc.dart
│   │   │   │   │   │   └── state.dart
│   │   │   │   │   └── repository/
│   │   │   │   │       └── repository.dart
│   │   │   │   ├── event/
│   │   │   │   │   └── api.dart
│   │   │   │   ├── http/
│   │   │   │   │   ├── flutter_unit/
│   │   │   │   │   │   ├── api/
│   │   │   │   │   │   │   └── upgrade_api.dart
│   │   │   │   │   │   └── unit_host.dart
│   │   │   │   │   ├── http.dart
│   │   │   │   │   ├── register.dart
│   │   │   │   │   └── science/
│   │   │   │   │       ├── science_host.dart
│   │   │   │   │       └── science_rep_interceptor.dart
│   │   │   │   ├── news/
│   │   │   │   │   ├── cacheable.dart
│   │   │   │   │   └── news_bloc.dart
│   │   │   │   └── view/
│   │   │   │       ├── about/
│   │   │   │       │   ├── about_app_page.dart
│   │   │   │       │   ├── about_me_page.dart
│   │   │   │       │   └── version_info.dart
│   │   │   │       ├── account/
│   │   │   │       │   └── desk/
│   │   │   │       │       ├── desk_account_page.dart
│   │   │   │       │       ├── sliver_cellection_panel.dart
│   │   │   │       │       ├── sliver_list_panel.dart
│   │   │   │       │       ├── sliver_share_panel.dart
│   │   │   │       │       └── user_header.dart
│   │   │   │       ├── data_manage/
│   │   │   │       │   └── data_manage_page.dart
│   │   │   │       ├── setting/
│   │   │   │       │   ├── app_style_setting.dart
│   │   │   │       │   ├── code_style_setting.dart
│   │   │   │       │   ├── font_setting.dart
│   │   │   │       │   ├── item_style_setting.dart
│   │   │   │       │   ├── language_setting.dart
│   │   │   │       │   ├── setting_page.dart
│   │   │   │       │   ├── theme_color_setting.dart
│   │   │   │       │   └── theme_model_setting.dart
│   │   │   │       ├── unit_todo/
│   │   │   │       │   ├── attr_unit_page.dart
│   │   │   │       │   ├── layout_unit_page.dart
│   │   │   │       │   ├── paint_unit_page.dart
│   │   │   │       │   └── point_unit_page.dart
│   │   │   │       ├── view.dart
│   │   │   │       └── wrapper/
│   │   │   │           └── overlay_tool_wrapper.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── app_config_test.dart
│   │   ├── authentication/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── authentication.dart
│   │   │   │   ├── blocs/
│   │   │   │   │   ├── authentic/
│   │   │   │   │   │   ├── bloc.dart
│   │   │   │   │   │   ├── event.dart
│   │   │   │   │   │   └── state.dart
│   │   │   │   │   ├── register/
│   │   │   │   │   │   ├── bloc.dart
│   │   │   │   │   │   ├── event.dart
│   │   │   │   │   │   └── state.dart
│   │   │   │   │   └── user/
│   │   │   │   │       ├── bloc.dart
│   │   │   │   │       └── state.dart
│   │   │   │   ├── models/
│   │   │   │   │   └── user.dart
│   │   │   │   ├── repository/
│   │   │   │   │   ├── auth_repository.dart
│   │   │   │   │   └── impl/
│   │   │   │   │       └── http_auth_repository.dart
│   │   │   │   └── views/
│   │   │   │       ├── authentic_widget.dart
│   │   │   │       └── mobile/
│   │   │   │           ├── login/
│   │   │   │           │   ├── login_form.dart
│   │   │   │           │   └── login_page.dart
│   │   │   │           ├── register/
│   │   │   │           │   ├── arc_clipper.dart
│   │   │   │           │   ├── register_page.dart
│   │   │   │           │   └── send_code.dart
│   │   │   │           └── user/
│   │   │   │               ├── page_item.dart
│   │   │   │               ├── support_me.dart
│   │   │   │               ├── unit_drawer_header.dart
│   │   │   │               ├── user_account.dart
│   │   │   │               └── user_page.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── authentication_test.dart
│   │   ├── components/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── components.dart
│   │   │   │   ├── flutter_ui/
│   │   │   │   │   ├── diy_flexible_space_bar.dart
│   │   │   │   │   ├── flutter_ui.dart
│   │   │   │   │   ├── no_div_expansion_tile.dart
│   │   │   │   │   └── toly_date_picker.dart
│   │   │   │   └── project_ui/
│   │   │   │       ├── default/
│   │   │   │       │   ├── empty_search_page.dart
│   │   │   │       │   ├── empty_shower.dart
│   │   │   │       │   ├── error_page.dart
│   │   │   │       │   ├── error_shower.dart
│   │   │   │       │   ├── loading_shower.dart
│   │   │   │       │   └── no_more_widget.dart
│   │   │   │       ├── project_ui.dart
│   │   │   │       ├── refresh/
│   │   │   │       │   ├── refresh.dart
│   │   │   │       │   ├── refresh_config_wrapper.dart
│   │   │   │       │   └── toly_refresh_indicator.dart
│   │   │   │       ├── time_line/
│   │   │   │       │   ├── flutter_unit_time_line.dart
│   │   │   │       │   └── model/
│   │   │   │       │       └── time_node.dart
│   │   │   │       ├── top_bar/
│   │   │   │       │   ├── desk_account_top_bar.dart
│   │   │   │       │   ├── desk_knowledge_top_bar.dart
│   │   │   │       │   ├── desk_simple_top_bar.dart
│   │   │   │       │   └── desk_tab_top_bar.dart
│   │   │   │       ├── unit_app_bar.dart
│   │   │   │       └── wrapper/
│   │   │   │           └── honour_wrapper.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── components_test.dart
│   │   ├── fx_updater/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── bloc/
│   │   │   │   │   ├── bloc.dart
│   │   │   │   │   ├── event.dart
│   │   │   │   │   └── state.dart
│   │   │   │   ├── fx_updater.dart
│   │   │   │   ├── repository/
│   │   │   │   │   ├── api/
│   │   │   │   │   │   └── upgrade_api.dart
│   │   │   │   │   └── model/
│   │   │   │   │       └── app_info.dart
│   │   │   │   ├── strategy/
│   │   │   │   │   ├── android_strategy.dart
│   │   │   │   │   ├── desktop_strategy.dart
│   │   │   │   │   ├── download_mixin.dart
│   │   │   │   │   ├── macos_strategy.dart
│   │   │   │   │   └── update_strategy.dart
│   │   │   │   └── views/
│   │   │   │       ├── app_update_panel.dart
│   │   │   │       ├── dialog/
│   │   │   │       │   ├── top_bar.dart
│   │   │   │       │   └── update_dialog.dart
│   │   │   │       ├── update_red_point.dart
│   │   │   │       └── version_shower.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── fx_updater_test.dart
│   │   ├── l10n/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── desiredFileName.txt
│   │   │   ├── l10n.yaml
│   │   │   ├── l10n_copy.sh
│   │   │   ├── lib/
│   │   │   │   ├── arb/
│   │   │   │   │   ├── app_en.arb
│   │   │   │   │   └── app_zh.arb
│   │   │   │   ├── enum/
│   │   │   │   │   └── language.dart
│   │   │   │   ├── ext.dart
│   │   │   │   ├── gen_l10n/
│   │   │   │   │   ├── app_localizations.dart
│   │   │   │   │   ├── app_localizations_en.dart
│   │   │   │   │   └── app_localizations_zh.dart
│   │   │   │   └── l10n.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       ├── l10n_copy.dart
│   │   │       └── l10n_test.dart
│   │   ├── storage/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── src/
│   │   │   │   │   ├── app_storage.dart
│   │   │   │   │   ├── db_storage/
│   │   │   │   │   │   ├── flutter/
│   │   │   │   │   │   │   ├── article_db_store.dart
│   │   │   │   │   │   │   └── flutter_db_store.dart
│   │   │   │   │   │   ├── flutter_unit/
│   │   │   │   │   │   │   ├── dao/
│   │   │   │   │   │   │   │   └── cache_dao.dart
│   │   │   │   │   │   │   ├── flutter_unit.dart
│   │   │   │   │   │   │   ├── flutter_unit_db_store.dart
│   │   │   │   │   │   │   └── model/
│   │   │   │   │   │   │       └── cache_po.dart
│   │   │   │   │   │   └── storage.dart
│   │   │   │   │   └── sp_storage/
│   │   │   │   │       ├── cao/
│   │   │   │   │       │   └── app_config_cao.dart
│   │   │   │   │       ├── exp.dart
│   │   │   │   │       ├── models/
│   │   │   │   │       │   └── app_config_po.dart
│   │   │   │   │       └── sp_storage.dart
│   │   │   │   └── storage.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── db_storage_test.dart
│   │   ├── toly_ui/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── adapter/
│   │   │   │   │   └── platform_view_adapter.dart
│   │   │   │   ├── button/
│   │   │   │   │   └── feedback_widget.dart
│   │   │   │   ├── code/
│   │   │   │   │   ├── code.dart
│   │   │   │   │   ├── code_widget.dart
│   │   │   │   │   ├── high_light_code.dart
│   │   │   │   │   ├── highlighter_style.dart
│   │   │   │   │   └── language/
│   │   │   │   │       ├── dart_languge.dart
│   │   │   │   │       └── language.dart
│   │   │   │   ├── decorations/
│   │   │   │   │   └── round_rect_rab_indicator.dart
│   │   │   │   ├── default/
│   │   │   │   │   └── loading/
│   │   │   │   │       └── planet_loading.dart
│   │   │   │   ├── dialog/
│   │   │   │   │   ├── alert_conform_dialog.dart
│   │   │   │   │   └── delete_message_panel.dart
│   │   │   │   ├── input/
│   │   │   │   │   ├── edit_panel.dart
│   │   │   │   │   ├── icon_input.dart
│   │   │   │   │   └── input_button.dart
│   │   │   │   ├── markdown/
│   │   │   │   │   ├── markdown_widget.dart
│   │   │   │   │   ├── md_text_styles.dart
│   │   │   │   │   └── syntax_high_lighter.dart
│   │   │   │   ├── object/
│   │   │   │   │   └── windmill.dart
│   │   │   │   ├── popable/
│   │   │   │   │   └── drop_selectable_widget.dart
│   │   │   │   ├── selector/
│   │   │   │   │   ├── burst_menu.dart
│   │   │   │   │   ├── color_chooser.dart
│   │   │   │   │   └── multi_chip_filter.dart
│   │   │   │   ├── sliver_header/
│   │   │   │   │   ├── sliver_pinned_header.dart
│   │   │   │   │   └── sliver_snap_header.dart
│   │   │   │   ├── ti/
│   │   │   │   │   ├── circle.dart
│   │   │   │   │   ├── circle_image.dart
│   │   │   │   │   ├── circle_text.dart
│   │   │   │   │   ├── color_wrapper.dart
│   │   │   │   │   ├── math_runner.dart
│   │   │   │   │   ├── panel.dart
│   │   │   │   │   ├── tag.dart
│   │   │   │   │   ├── text_typer.dart
│   │   │   │   │   └── toly_switch_list_tile.dart
│   │   │   │   └── toly_ui.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── toly_ui_test.dart
│   │   ├── unit_env/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── src/
│   │   │   │   │   └── host.dart
│   │   │   │   └── unit_env.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── unit_env_test.dart
│   │   └── utils/
│   │       ├── .gitignore
│   │       ├── .metadata
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── analysis_options.yaml
│   │       ├── lib/
│   │       │   ├── src/
│   │       │   │   ├── color_utils.dart
│   │       │   │   ├── convert_man.dart
│   │       │   │   ├── http_utils/
│   │       │   │   │   ├── http_util.dart
│   │       │   │   │   ├── http_utils.dart
│   │       │   │   │   ├── logs_interceptor.dart
│   │       │   │   │   ├── response_interceptor.dart
│   │       │   │   │   ├── task_result.dart
│   │       │   │   │   └── token_interceptor.dart
│   │       │   │   ├── random_provider.dart
│   │       │   │   └── toast.dart
│   │       │   └── utils.dart
│   │       ├── pubspec.yaml
│   │       └── test/
│   │           └── utils_test.dart
│   ├── knowledge_system/
│   │   ├── algorithm/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── algorithm.dart
│   │   │   │   └── src/
│   │   │   │       ├── algorithm/
│   │   │   │       │   ├── finding/
│   │   │   │       │   │   ├── functions/
│   │   │   │       │   │   │   ├── AStar.dart
│   │   │   │       │   │   │   ├── BFS.dart
│   │   │   │       │   │   │   ├── BestFS.dart
│   │   │   │       │   │   │   ├── DFS.dart
│   │   │   │       │   │   │   └── dijkstra.dart
│   │   │   │       │   │   └── functions.dart
│   │   │   │       │   └── sort/
│   │   │   │       │       ├── functions/
│   │   │   │       │       │   ├── bubble.dart
│   │   │   │       │       │   ├── cocktail.dart
│   │   │   │       │       │   ├── comb.dart
│   │   │   │       │       │   ├── cycle.dart
│   │   │   │       │       │   ├── gnome.dart
│   │   │   │       │       │   ├── heap.dart
│   │   │   │       │       │   ├── insertion.dart
│   │   │   │       │       │   ├── merge.dart
│   │   │   │       │       │   ├── oddEven.dart
│   │   │   │       │       │   ├── pigeonHole.dart
│   │   │   │       │       │   ├── quick.dart
│   │   │   │       │       │   ├── selection.dart
│   │   │   │       │       │   └── shell.dart
│   │   │   │       │       └── functions.dart
│   │   │   │       ├── data_scope/
│   │   │   │       │   ├── sort_config.dart
│   │   │   │       │   └── state.dart
│   │   │   │       ├── finding/
│   │   │   │       │   ├── data_scope/
│   │   │   │       │   │   ├── finding_config.dart
│   │   │   │       │   │   ├── finding_state.dart
│   │   │   │       │   │   ├── position.dart
│   │   │   │       │   │   └── random_queue.dart
│   │   │   │       │   └── view/
│   │   │   │       │       ├── board.dart
│   │   │   │       │       ├── finding_button.dart
│   │   │   │       │       ├── finding_page.dart
│   │   │   │       │       └── finding_tool_bar.dart
│   │   │   │       ├── navigation/
│   │   │   │       │   ├── menu/
│   │   │   │       │   │   ├── algo_menu.dart
│   │   │   │       │   │   ├── finding.dart
│   │   │   │       │   │   └── sort.dart
│   │   │   │       │   ├── router/
│   │   │   │       │   │   └── router.dart
│   │   │   │       │   └── view/
│   │   │   │       │       ├── algo_desk_navigation.dart
│   │   │   │       │       ├── algo_menu_cell.dart
│   │   │   │       │       └── algo_menu_tree.dart
│   │   │   │       ├── sort/
│   │   │   │       │   ├── data_painter.dart
│   │   │   │       │   ├── sort_page.dart
│   │   │   │       │   ├── sort_parper.dart
│   │   │   │       │   ├── sort_setting.dart
│   │   │   │       │   └── top_bar/
│   │   │   │       │       ├── sort_bar.dart
│   │   │   │       │       └── sort_button.dart
│   │   │   │       └── views/
│   │   │   │           ├── algo_page.dart
│   │   │   │           └── desktop/
│   │   │   │               └── desk_algo_panel.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── utils_test.dart
│   │   ├── artifact/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── artifact.dart
│   │   │   │   └── src/
│   │   │   │       ├── articles/
│   │   │   │       │   ├── bloc/
│   │   │   │       │   │   ├── article/
│   │   │   │       │   │   │   └── bloc.dart
│   │   │   │       │   │   ├── columnize/
│   │   │   │       │   │   │   └── bloc.dart
│   │   │   │       │   │   └── exp.dart
│   │   │   │       │   ├── data/
│   │   │   │       │   │   ├── dao/
│   │   │   │       │   │   │   ├── article_dao.dart
│   │   │   │       │   │   │   └── columnize_dao.dart
│   │   │   │       │   │   ├── exp.dart
│   │   │   │       │   │   ├── model/
│   │   │   │       │   │   │   ├── article.dart
│   │   │   │       │   │   │   └── columnize.dart
│   │   │   │       │   │   └── repository/
│   │   │   │       │   │       ├── article_repository.dart
│   │   │   │       │   │       └── columnize_repository.dart
│   │   │   │       │   └── view/
│   │   │   │       │       ├── article/
│   │   │   │       │       │   ├── article_detail_page.dart
│   │   │   │       │       │   ├── column_detail_page.dart
│   │   │   │       │       │   ├── columnize_page_view.dart
│   │   │   │       │       │   ├── sliver_article.dart
│   │   │   │       │       │   ├── sliver_columnize.dart
│   │   │   │       │       │   └── toly_article_scroll_page.dart
│   │   │   │       │       ├── artifact_page.dart
│   │   │   │       │       ├── building/
│   │   │   │       │       │   └── building_panel.dart
│   │   │   │       │       └── desk_artifact_page.dart
│   │   │   │       └── points/
│   │   │   │           ├── bloc/
│   │   │   │           │   ├── bloc.dart
│   │   │   │           │   ├── point_bloc.dart
│   │   │   │           │   └── point_comment_bloc.dart
│   │   │   │           ├── data/
│   │   │   │           │   ├── api/
│   │   │   │           │   │   ├── app_info.dart
│   │   │   │           │   │   ├── category_api.dart
│   │   │   │           │   │   └── issues_api.dart
│   │   │   │           │   └── model/
│   │   │   │           │       ├── github_model.dart
│   │   │   │           │       ├── github_user.dart
│   │   │   │           │       ├── issue.dart
│   │   │   │           │       ├── issue_comment.dart
│   │   │   │           │       ├── license.dart
│   │   │   │           │       ├── repository.dart
│   │   │   │           │       └── repository_permissions.dart
│   │   │   │           ├── exp.dart
│   │   │   │           ├── repository/
│   │   │   │           │   └── api/
│   │   │   │           │       └── point_api.dart
│   │   │   │           └── view/
│   │   │   │               ├── desk_ui/
│   │   │   │               │   ├── desk_point_page.dart
│   │   │   │               │   └── github_repo_panel.dart
│   │   │   │               └── issues_point/
│   │   │   │                   ├── issue_item.dart
│   │   │   │                   ├── issues_detail.dart
│   │   │   │                   ├── issues_point_page.dart
│   │   │   │                   └── repo_widget.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── utils_test.dart
│   │   ├── awesome/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── awesome.dart
│   │   │   │   └── listenable/
│   │   │   │       ├── change_notifier_01/
│   │   │   │       │   ├── main.dart
│   │   │   │       │   ├── notifier/
│   │   │   │       │   │   └── progress_value_notifier.dart
│   │   │   │       │   └── page/
│   │   │   │       │       ├── detail/
│   │   │   │       │       │   ├── detail_progress_view.dart
│   │   │   │       │       │   └── download_detail.dart
│   │   │   │       │       └── home/
│   │   │   │       │           ├── home_page.dart
│   │   │   │       │           └── home_progress_view.dart
│   │   │   │       └── change_notifier_02/
│   │   │   │           ├── main.dart
│   │   │   │           ├── notifier/
│   │   │   │           │   ├── download_data_scope.dart
│   │   │   │           │   └── progress_value_notifier.dart
│   │   │   │           └── page/
│   │   │   │               ├── detail/
│   │   │   │               │   ├── detail_progress_view.dart
│   │   │   │               │   └── download_detail.dart
│   │   │   │               └── home/
│   │   │   │                   ├── home_page.dart
│   │   │   │                   └── home_progress_view.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── awesome_test.dart
│   │   ├── layout/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── layout.dart
│   │   │   │   └── src/
│   │   │   │       ├── bloc/
│   │   │   │       │   ├── display_logic.dart
│   │   │   │       │   └── display_state.dart
│   │   │   │       ├── data/
│   │   │   │       │   ├── display_map/
│   │   │   │       │   │   ├── base.dart
│   │   │   │       │   │   ├── display_map.dart
│   │   │   │       │   │   ├── funny.dart
│   │   │   │       │   │   └── multi.dart
│   │   │   │       │   └── model/
│   │   │   │       │       └── display_frame.dart
│   │   │   │       ├── ext/
│   │   │   │       │   └── go_router/
│   │   │   │       │       ├── listener.dart
│   │   │   │       │       └── path.dart
│   │   │   │       ├── navigation/
│   │   │   │       │   ├── menu/
│   │   │   │       │   │   ├── base_layout.dart
│   │   │   │       │   │   ├── funny.dart
│   │   │   │       │   │   ├── layout.dart
│   │   │   │       │   │   ├── menu_repository_impl.dart
│   │   │   │       │   │   ├── multi.dart
│   │   │   │       │   │   ├── popable.dart
│   │   │   │       │   │   └── scroll.dart
│   │   │   │       │   ├── router/
│   │   │   │       │   │   ├── app_router.dart
│   │   │   │       │   │   ├── desk_router.dart
│   │   │   │       │   │   └── transition/
│   │   │   │       │   │       ├── fade_page_transitions_builder.dart
│   │   │   │       │   │       ├── page_route/
│   │   │   │       │   │       │   ├── fade_page_route.dart
│   │   │   │       │   │       │   ├── slide_page_route.dart
│   │   │   │       │   │       │   └── zero_page_route.dart
│   │   │   │       │   │       ├── size_clip_transition.dart
│   │   │   │       │   │       └── slide_transition/
│   │   │   │       │   │           ├── cupertino_back_gesture_detector.dart
│   │   │   │       │   │           └── slide_page_transition_builder.dart
│   │   │   │       │   └── view/
│   │   │   │       │       ├── app_desk_navigation.dart
│   │   │   │       │       └── app_menu_tree.dart
│   │   │   │       └── views/
│   │   │   │           ├── base/
│   │   │   │           │   ├── align/
│   │   │   │           │   │   ├── align_show.dart
│   │   │   │           │   │   └── align_show2.dart
│   │   │   │           │   ├── padding/
│   │   │   │           │   │   ├── inner_padding.dart
│   │   │   │           │   │   ├── outer_padding.dart
│   │   │   │           │   │   └── sizedbox_padding.dart
│   │   │   │           │   ├── positioned/
│   │   │   │           │   │   └── positioned_show.dart
│   │   │   │           │   └── size/
│   │   │   │           │       ├── size_display.dart
│   │   │   │           │       ├── size_loss_by_align.dart
│   │   │   │           │       ├── size_tight_constraint.dart
│   │   │   │           │       └── size_unconstraint.dart
│   │   │   │           ├── components/
│   │   │   │           │   └── grid_xy_layout.dart
│   │   │   │           ├── display/
│   │   │   │           │   ├── layout_playground.dart
│   │   │   │           │   ├── playground_bottom_bar.dart
│   │   │   │           │   └── playground_top_bar.dart
│   │   │   │           ├── interest/
│   │   │   │           │   └── elevator/
│   │   │   │           │       └── elevator.dart
│   │   │   │           ├── layout_page.dart
│   │   │   │           ├── multi/
│   │   │   │           │   └── flex/
│   │   │   │           │       ├── column_show.dart
│   │   │   │           │       └── row_show.dart
│   │   │   │           ├── playground/
│   │   │   │           │   ├── cons.dart
│   │   │   │           │   ├── data/
│   │   │   │           │   │   ├── flex_attr.dart
│   │   │   │           │   │   ├── stack_attr.dart
│   │   │   │           │   │   └── wrap_attr.dart
│   │   │   │           │   └── view/
│   │   │   │           │       ├── display_item.dart
│   │   │   │           │       ├── flex/
│   │   │   │           │       │   ├── flex_op_panel.dart
│   │   │   │           │       │   └── flex_playground.dart
│   │   │   │           │       ├── form_item/
│   │   │   │           │       │   ├── item_selector.dart
│   │   │   │           │       │   ├── item_size_input.dart
│   │   │   │           │       │   └── value_input.dart
│   │   │   │           │       ├── stack/
│   │   │   │           │       │   ├── stack_op_panel.dart
│   │   │   │           │       │   └── stack_playground.dart
│   │   │   │           │       └── wrap/
│   │   │   │           │           ├── wrap_op_panel.dart
│   │   │   │           │           └── wrap_playground.dart
│   │   │   │           ├── popable/
│   │   │   │           │   ├── autocomplete_demo.dart
│   │   │   │           │   ├── dropdown_button_demo.dart
│   │   │   │           │   └── dropdown_menu_demo.dart
│   │   │   │           ├── scroll/
│   │   │   │           │   ├── grid_view/
│   │   │   │           │   │   └── grid_view_demo01.dart
│   │   │   │           │   ├── list_view/
│   │   │   │           │   │   └── list_view_demo01.dart
│   │   │   │           │   └── page_view/
│   │   │   │           │       └── page_view_demo01.dart
│   │   │   │           └── test_show.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── layout_test.dart
│   │   └── note/
│   │       ├── .gitignore
│   │       ├── .metadata
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── analysis_options.yaml
│   │       ├── lib/
│   │       │   ├── note.dart
│   │       │   └── src/
│   │       │       ├── bloc/
│   │       │       │   ├── bloc.dart
│   │       │       │   └── news_bloc.dart
│   │       │       ├── env/
│   │       │       │   └── env.dart
│   │       │       ├── repository/
│   │       │       │   ├── article_repository.dart
│   │       │       │   ├── model/
│   │       │       │   │   ├── article.dart
│   │       │       │   │   ├── category.dart
│   │       │       │   │   ├── model.dart
│   │       │       │   │   ├── query.dart
│   │       │       │   │   └── status.dart
│   │       │       │   └── repository.dart
│   │       │       └── view/
│   │       │           ├── art_sys_scope.dart
│   │       │           ├── article_admin.dart
│   │       │           ├── article_editor.dart
│   │       │           ├── article_item.dart
│   │       │           ├── article_list.dart
│   │       │           ├── components/
│   │       │           │   └── button/
│   │       │           │       └── button.dart
│   │       │           ├── desktop/
│   │       │           │   └── article_display.dart
│   │       │           ├── mobile/
│   │       │           │   ├── mobile_article_list.dart
│   │       │           │   ├── mobile_article_page.dart
│   │       │           │   ├── mobile_editor.dart
│   │       │           │   └── note.dart
│   │       │           ├── news/
│   │       │           │   └── news_page.dart
│   │       │           └── view.dart
│   │       ├── pubspec.yaml
│   │       └── test/
│   │           ├── note_test.dart
│   │           └── parser.dart
│   ├── painting_system/
│   │   └── draw_system/
│   │       ├── .gitignore
│   │       ├── .metadata
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── analysis_options.yaml
│   │       ├── lib/
│   │       │   ├── draw_system.dart
│   │       │   └── src/
│   │       │       ├── anim/
│   │       │       │   ├── bezier3_player/
│   │       │       │   │   ├── bezier3_palyer.dart
│   │       │       │   │   └── touch_info.dart
│   │       │       │   ├── circle_halo.dart
│   │       │       │   ├── curve_shower/
│   │       │       │   │   ├── anim_painter.dart
│   │       │       │   │   ├── curve_anim_shower.dart
│   │       │       │   │   └── point_data.dart
│   │       │       │   ├── draw_path.dart
│   │       │       │   ├── dundun_path.dart
│   │       │       │   ├── rotate_by_point/
│   │       │       │   │   ├── angle_panter.dart
│   │       │       │   │   ├── line.dart
│   │       │       │   │   └── rotate_by_point.dart
│   │       │       │   └── spring_widget.dart
│   │       │       ├── art/
│   │       │       │   ├── circle_packing.dart
│   │       │       │   ├── cubic_disarray.dart
│   │       │       │   ├── hypnotic_squares.dart
│   │       │       │   ├── joy_division.dart
│   │       │       │   ├── piet_mondrian.dart
│   │       │       │   ├── tiled_lines.dart
│   │       │       │   ├── triangular_mesh.dart
│   │       │       │   └── un_deux_trois.dart
│   │       │       ├── base/
│   │       │       │   ├── clock_widget.dart
│   │       │       │   ├── digital/
│   │       │       │   │   ├── digital_painter.dart
│   │       │       │   │   ├── digital_path.dart
│   │       │       │   │   ├── digital_shower.dart
│   │       │       │   │   └── digital_widget.dart
│   │       │       │   ├── draw_grid_axis.dart
│   │       │       │   ├── draw_path_fun.dart
│   │       │       │   ├── draw_picture.dart
│   │       │       │   ├── n_side/
│   │       │       │   │   ├── n_side_page.dart
│   │       │       │   │   └── shape_painter.dart
│   │       │       │   ├── polar/
│   │       │       │   │   ├── angle_painter.dart
│   │       │       │   │   ├── polar.dart
│   │       │       │   │   └── polar_painter_widget.dart
│   │       │       │   └── windmill.dart
│   │       │       ├── bloc/
│   │       │       │   └── gallery_unit/
│   │       │       │       └── bloc.dart
│   │       │       ├── desk_ui/
│   │       │       │   ├── desk_frame.dart
│   │       │       │   └── desk_gallery_unit.dart
│   │       │       ├── fun/
│   │       │       │   ├── bufeng/
│   │       │       │   │   ├── bufeng_panel.dart
│   │       │       │   │   ├── config.dart
│   │       │       │   │   └── painter.dart
│   │       │       │   ├── dundun_view.dart
│   │       │       │   ├── random_portrait.dart
│   │       │       │   └── stemp/
│   │       │       │       ├── stamp_data.dart
│   │       │       │       └── stamp_paper.dart
│   │       │       ├── gallery_card_item.dart
│   │       │       ├── gallery_detail_page.dart
│   │       │       ├── gallery_factory.dart
│   │       │       ├── gallery_unit.dart
│   │       │       ├── particle/
│   │       │       │   ├── out/
│   │       │       │   │   ├── clock_fx.dart
│   │       │       │   │   ├── clock_widget.dart
│   │       │       │   │   ├── particle.dart
│   │       │       │   │   └── rnd.dart
│   │       │       │   ├── random/
│   │       │       │   │   ├── particle.dart
│   │       │       │   │   ├── particle_manage.dart
│   │       │       │   │   ├── random_particle.dart
│   │       │       │   │   └── world_render.dart
│   │       │       │   ├── split/
│   │       │       │   │   ├── particle.dart
│   │       │       │   │   ├── particle_manage.dart
│   │       │       │   │   ├── particle_split.dart
│   │       │       │   │   └── world_render.dart
│   │       │       │   └── split_img/
│   │       │       │       ├── particle.dart
│   │       │       │       ├── particle_manage.dart
│   │       │       │       ├── split_image.dart
│   │       │       │       └── world_render.dart
│   │       │       ├── picture_frame.dart
│   │       │       └── utils/
│   │       │           ├── colors.dart
│   │       │           └── coordinate.dart
│   │       ├── pubspec.yaml
│   │       └── test/
│   │           └── draw_system_test.dart
│   ├── tools_system/
│   │   ├── pkg_player/
│   │   │   ├── .amazonq/
│   │   │   │   └── rules/
│   │   │   │       ├── dart.md
│   │   │   │       └── file_create.md
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── desiredFileName.txt
│   │   │   ├── devtools_options.yaml
│   │   │   ├── example/
│   │   │   │   ├── .gitignore
│   │   │   │   ├── .metadata
│   │   │   │   ├── README.md
│   │   │   │   ├── analysis_options.yaml
│   │   │   │   ├── android/
│   │   │   │   │   ├── .gitignore
│   │   │   │   │   ├── app/
│   │   │   │   │   │   ├── build.gradle
│   │   │   │   │   │   └── src/
│   │   │   │   │   │       ├── debug/
│   │   │   │   │   │       │   └── AndroidManifest.xml
│   │   │   │   │   │       ├── main/
│   │   │   │   │   │       │   ├── AndroidManifest.xml
│   │   │   │   │   │       │   ├── kotlin/
│   │   │   │   │   │       │   │   └── com/
│   │   │   │   │   │       │   │       └── example/
│   │   │   │   │   │       │   │           └── example/
│   │   │   │   │   │       │   │               └── MainActivity.kt
│   │   │   │   │   │       │   └── res/
│   │   │   │   │   │       │       ├── drawable/
│   │   │   │   │   │       │       │   └── launch_background.xml
│   │   │   │   │   │       │       ├── drawable-v21/
│   │   │   │   │   │       │       │   └── launch_background.xml
│   │   │   │   │   │       │       ├── values/
│   │   │   │   │   │       │       │   └── styles.xml
│   │   │   │   │   │       │       └── values-night/
│   │   │   │   │   │       │           └── styles.xml
│   │   │   │   │   │       └── profile/
│   │   │   │   │   │           └── AndroidManifest.xml
│   │   │   │   │   ├── build.gradle
│   │   │   │   │   ├── gradle/
│   │   │   │   │   │   └── wrapper/
│   │   │   │   │   │       └── gradle-wrapper.properties
│   │   │   │   │   ├── gradle.properties
│   │   │   │   │   └── settings.gradle
│   │   │   │   ├── devtools_options.yaml
│   │   │   │   ├── ios/
│   │   │   │   │   ├── .gitignore
│   │   │   │   │   ├── Flutter/
│   │   │   │   │   │   ├── AppFrameworkInfo.plist
│   │   │   │   │   │   ├── Debug.xcconfig
│   │   │   │   │   │   └── Release.xcconfig
│   │   │   │   │   ├── Podfile
│   │   │   │   │   ├── Runner/
│   │   │   │   │   │   ├── AppDelegate.swift
│   │   │   │   │   │   ├── Assets.xcassets/
│   │   │   │   │   │   │   ├── AppIcon.appiconset/
│   │   │   │   │   │   │   │   └── Contents.json
│   │   │   │   │   │   │   └── LaunchImage.imageset/
│   │   │   │   │   │   │       ├── Contents.json
│   │   │   │   │   │   │       └── README.md
│   │   │   │   │   │   ├── Base.lproj/
│   │   │   │   │   │   │   ├── LaunchScreen.storyboard
│   │   │   │   │   │   │   └── Main.storyboard
│   │   │   │   │   │   ├── Info.plist
│   │   │   │   │   │   └── Runner-Bridging-Header.h
│   │   │   │   │   ├── 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
│   │   │   │   │   └── RunnerTests/
│   │   │   │   │       └── RunnerTests.swift
│   │   │   │   ├── lib/
│   │   │   │   │   ├── app_theme.dart
│   │   │   │   │   └── main.dart
│   │   │   │   ├── linux/
│   │   │   │   │   ├── .gitignore
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── flutter/
│   │   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   │   ├── generated_plugin_registrant.cc
│   │   │   │   │   │   ├── generated_plugin_registrant.h
│   │   │   │   │   │   └── generated_plugins.cmake
│   │   │   │   │   └── runner/
│   │   │   │   │       ├── CMakeLists.txt
│   │   │   │   │       ├── main.cc
│   │   │   │   │       ├── my_application.cc
│   │   │   │   │       └── my_application.h
│   │   │   │   ├── macos/
│   │   │   │   │   ├── .gitignore
│   │   │   │   │   ├── Flutter/
│   │   │   │   │   │   ├── Flutter-Debug.xcconfig
│   │   │   │   │   │   ├── Flutter-Release.xcconfig
│   │   │   │   │   │   └── GeneratedPluginRegistrant.swift
│   │   │   │   │   ├── Podfile
│   │   │   │   │   ├── Runner/
│   │   │   │   │   │   ├── AppDelegate.swift
│   │   │   │   │   │   ├── Assets.xcassets/
│   │   │   │   │   │   │   └── AppIcon.appiconset/
│   │   │   │   │   │   │       └── Contents.json
│   │   │   │   │   │   ├── Base.lproj/
│   │   │   │   │   │   │   └── MainMenu.xib
│   │   │   │   │   │   ├── Configs/
│   │   │   │   │   │   │   ├── AppInfo.xcconfig
│   │   │   │   │   │   │   ├── Debug.xcconfig
│   │   │   │   │   │   │   ├── Release.xcconfig
│   │   │   │   │   │   │   └── Warnings.xcconfig
│   │   │   │   │   │   ├── DebugProfile.entitlements
│   │   │   │   │   │   ├── Info.plist
│   │   │   │   │   │   ├── MainFlutterWindow.swift
│   │   │   │   │   │   └── Release.entitlements
│   │   │   │   │   ├── Runner.xcodeproj/
│   │   │   │   │   │   ├── project.pbxproj
│   │   │   │   │   │   ├── project.xcworkspace/
│   │   │   │   │   │   │   └── xcshareddata/
│   │   │   │   │   │   │       └── IDEWorkspaceChecks.plist
│   │   │   │   │   │   └── xcshareddata/
│   │   │   │   │   │       └── xcschemes/
│   │   │   │   │   │           └── Runner.xcscheme
│   │   │   │   │   ├── Runner.xcworkspace/
│   │   │   │   │   │   ├── contents.xcworkspacedata
│   │   │   │   │   │   └── xcshareddata/
│   │   │   │   │   │       └── IDEWorkspaceChecks.plist
│   │   │   │   │   └── RunnerTests/
│   │   │   │   │       └── RunnerTests.swift
│   │   │   │   ├── pubspec.yaml
│   │   │   │   ├── test/
│   │   │   │   │   └── widget_test.dart
│   │   │   │   ├── web/
│   │   │   │   │   ├── 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
│   │   │   │           ├── runner.exe.manifest
│   │   │   │           ├── utils.cpp
│   │   │   │           ├── utils.h
│   │   │   │           ├── win32_window.cpp
│   │   │   │           └── win32_window.h
│   │   │   ├── fx.yaml
│   │   │   ├── l10n.yaml
│   │   │   ├── lib/
│   │   │   │   ├── pkg_player.dart
│   │   │   │   └── src/
│   │   │   │       ├── bloc/
│   │   │   │       │   ├── bloc.dart
│   │   │   │       │   ├── category/
│   │   │   │       │   │   ├── category_cubit.dart
│   │   │   │       │   │   └── category_state.dart
│   │   │   │       │   ├── comments/
│   │   │   │       │   │   ├── comment_replies_cubit.dart
│   │   │   │       │   │   ├── comment_replies_state.dart
│   │   │   │       │   │   ├── comments_cubit.dart
│   │   │   │       │   │   └── comments_state.dart
│   │   │   │       │   └── packages/
│   │   │   │       │       ├── package_cubit.dart
│   │   │   │       │       └── package_state.dart
│   │   │   │       ├── l10n/
│   │   │   │       │   ├── arb/
│   │   │   │       │   │   ├── l10n_en.arb
│   │   │   │       │   │   └── l10n_zh.arb
│   │   │   │       │   ├── gen/
│   │   │   │       │   │   ├── l10n.dart
│   │   │   │       │   │   ├── l10n_en.dart
│   │   │   │       │   │   └── l10n_zh.dart
│   │   │   │       │   └── l10n.dart
│   │   │   │       ├── repository/
│   │   │   │       │   ├── api/
│   │   │   │       │   │   ├── request.dart
│   │   │   │       │   │   └── url.dart
│   │   │   │       │   ├── database/
│   │   │   │       │   │   ├── dao/
│   │   │   │       │   │   │   ├── category_dao.dart
│   │   │   │       │   │   │   ├── dao.dart
│   │   │   │       │   │   │   ├── package_dao.dart
│   │   │   │       │   │   │   ├── package_service.dart
│   │   │   │       │   │   │   ├── tag_dao.dart
│   │   │   │       │   │   │   └── topic_dao.dart
│   │   │   │       │   │   ├── database.dart
│   │   │   │       │   │   └── database_helper.dart
│   │   │   │       │   ├── model/
│   │   │   │       │   │   ├── category_model.dart
│   │   │   │       │   │   ├── comment_model.dart
│   │   │   │       │   │   ├── model.dart
│   │   │   │       │   │   ├── plugin_model.dart
│   │   │   │       │   │   └── sort_type.dart
│   │   │   │       │   └── repository.dart
│   │   │   │       └── view/
│   │   │   │           ├── comments/
│   │   │   │           │   ├── comment_replies_page.dart
│   │   │   │           │   ├── comments_detail_page.dart
│   │   │   │           │   ├── comments_empty.dart
│   │   │   │           │   ├── comments_error.dart
│   │   │   │           │   ├── comments_loading.dart
│   │   │   │           │   ├── comments_top_bar.dart
│   │   │   │           │   └── comments_with_data.dart
│   │   │   │           ├── components/
│   │   │   │           │   ├── card/
│   │   │   │           │   │   ├── plugin_card.dart
│   │   │   │           │   │   └── plugin_card_page.dart
│   │   │   │           │   └── dialog/
│   │   │   │           │       └── sort_picker.dart
│   │   │   │           ├── home/
│   │   │   │           │   ├── empty_list.dart
│   │   │   │           │   ├── pkg_list_with_data.dart
│   │   │   │           │   ├── pkg_player_home_page.dart
│   │   │   │           │   ├── plugin_item.dart
│   │   │   │           │   └── recommendation_page.dart
│   │   │   │           ├── package_detail/
│   │   │   │           │   ├── comments_section.dart
│   │   │   │           │   ├── detail.dart
│   │   │   │           │   ├── detail_flexible_bar.dart
│   │   │   │           │   ├── plugin_dependencies_section.dart
│   │   │   │           │   ├── plugin_detail_page.dart
│   │   │   │           │   ├── plugin_info_section.dart
│   │   │   │           │   └── plugin_tags.dart
│   │   │   │           └── view.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       ├── pkg_player_test.dart
│   │   │       ├── science_server/
│   │   │       │   ├── moke/
│   │   │       │   │   ├── category.json
│   │   │       │   │   └── moke.dart
│   │   │       │   ├── package.dart
│   │   │       │   ├── sync/
│   │   │       │   │   ├── model/
│   │   │       │   │   │   ├── package_detail.dart
│   │   │       │   │   │   └── pub_package.dart
│   │   │       │   │   ├── package_repository.dart
│   │   │       │   │   └── pub_repository.dart
│   │   │       │   ├── sync.dart
│   │   │       │   ├── system.dart
│   │   │       │   └── test_comments.dart
│   │   │       └── scripts/
│   │   │           ├── analyze_packages.dart
│   │   │           ├── find_untranslated.dart
│   │   │           ├── get_ipv4.dart
│   │   │           ├── insert_chinese_desc.dart
│   │   │           └── update_dev_ip.dart
│   │   └── treasure_tools/
│   │       ├── .gitignore
│   │       ├── .metadata
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── analysis_options.yaml
│   │       ├── lib/
│   │       │   ├── src/
│   │       │   │   ├── bloc/
│   │       │   │   │   └── state.dart
│   │       │   │   ├── class_generator.dart
│   │       │   │   ├── code_gen_page.dart
│   │       │   │   ├── data/
│   │       │   │   │   └── task_result.dart
│   │       │   │   ├── desk_widget_top_bar.dart
│   │       │   │   ├── icon_font_gen/
│   │       │   │   │   ├── gen_message_action.dart
│   │       │   │   │   ├── icon_font_class_parser.dart
│   │       │   │   │   ├── icon_font_gen_config.dart
│   │       │   │   │   └── icon_font_gen_page.dart
│   │       │   │   ├── model/
│   │       │   │   │   ├── class.dart
│   │       │   │   │   └── field.dart
│   │       │   │   ├── popable/
│   │       │   │   │   ├── class_gen_field.dart
│   │       │   │   │   └── toly_select.dart
│   │       │   │   ├── view/
│   │       │   │   │   ├── json_display/
│   │       │   │   │   │   └── json_display.dart
│   │       │   │   │   └── mobile/
│   │       │   │   │       └── mobile_tool_page.dart
│   │       │   │   └── wrapper.dart
│   │       │   └── treasure_tools.dart
│   │       ├── pubspec.yaml
│   │       └── test/
│   │           ├── iconfont_parser_test.dart
│   │           ├── treasure_tools_test.dart
│   │           ├── yaml_parser_test.dart
│   │           └── yaml_parser_test2.dart
│   └── widget_system/
│       ├── widget_module/
│       │   ├── .gitignore
│       │   ├── .metadata
│       │   ├── CHANGELOG.md
│       │   ├── LICENSE
│       │   ├── README.md
│       │   ├── analysis_options.yaml
│       │   ├── lib/
│       │   │   ├── blocs/
│       │   │   │   ├── action/
│       │   │   │   │   └── widget_action.dart
│       │   │   │   ├── blocs.dart
│       │   │   │   ├── category_bloc/
│       │   │   │   │   ├── category_bloc.dart
│       │   │   │   │   ├── category_event.dart
│       │   │   │   │   └── category_state.dart
│       │   │   │   ├── category_widget_bloc/
│       │   │   │   │   ├── category_widget_bloc.dart
│       │   │   │   │   ├── category_widget_event.dart
│       │   │   │   │   └── category_widget_state.dart
│       │   │   │   ├── widget_detail_bloc/
│       │   │   │   │   ├── widget_detail_bloc.dart
│       │   │   │   │   └── widget_detail_state.dart
│       │   │   │   └── widgets_bloc/
│       │   │   │       ├── widgets_bloc.dart
│       │   │   │       ├── widgets_event.dart
│       │   │   │       └── widgets_state.dart
│       │   │   ├── event/
│       │   │   │   ├── widget_event.dart
│       │   │   │   └── widget_statistics_event.dart
│       │   │   ├── views/
│       │   │   │   ├── components/
│       │   │   │   │   ├── collected_tag.dart
│       │   │   │   │   └── widget_logo_map.dart
│       │   │   │   ├── desk_ui/
│       │   │   │   │   ├── category_panel/
│       │   │   │   │   │   ├── desk_category_page.dart
│       │   │   │   │   │   └── desk_top_like_panel.dart
│       │   │   │   │   ├── desk_ui.dart
│       │   │   │   │   ├── widget_detail/
│       │   │   │   │   │   ├── link_widget_buttons.dart
│       │   │   │   │   │   ├── widget_detail_bar.dart
│       │   │   │   │   │   ├── widget_detail_page.dart
│       │   │   │   │   │   ├── widget_detail_panel.dart
│       │   │   │   │   │   └── widget_node_panel.dart
│       │   │   │   │   └── widget_panel/
│       │   │   │   │       ├── desk_search_bar.dart
│       │   │   │   │       ├── desk_search_bar_v2.dart
│       │   │   │   │       ├── desk_widget_top_bar.dart
│       │   │   │   │       └── widget_panel.dart
│       │   │   │   ├── mobile/
│       │   │   │   │   ├── category_page/
│       │   │   │   │   │   ├── category_detail.dart
│       │   │   │   │   │   ├── category_list_item.dart
│       │   │   │   │   │   ├── category_page.dart
│       │   │   │   │   │   ├── collect_page.dart
│       │   │   │   │   │   ├── delete_category_dialog.dart
│       │   │   │   │   │   ├── edit_category_panel.dart
│       │   │   │   │   │   ├── empty_category.dart
│       │   │   │   │   │   ├── home_right_drawer.dart
│       │   │   │   │   │   ├── like_widget_page.dart
│       │   │   │   │   │   └── sync/
│       │   │   │   │   │       ├── async_button.dart
│       │   │   │   │   │       ├── category_api.dart
│       │   │   │   │   │       └── upload_button.dart
│       │   │   │   │   ├── mobile_ui.dart
│       │   │   │   │   ├── search_page/
│       │   │   │   │   │   ├── app_search_bar.dart
│       │   │   │   │   │   ├── standard_search_bar.dart
│       │   │   │   │   │   └── standard_search_page.dart
│       │   │   │   │   ├── widget_detail/
│       │   │   │   │   │   ├── category_end_drawer.dart
│       │   │   │   │   │   ├── collect_widget_list_item.dart
│       │   │   │   │   │   ├── node_display/
│       │   │   │   │   │   │   ├── code_display.dart
│       │   │   │   │   │   │   ├── collapse.dart
│       │   │   │   │   │   │   ├── node_display.dart
│       │   │   │   │   │   │   └── node_title.dart
│       │   │   │   │   │   ├── widget_detail_bar.dart
│       │   │   │   │   │   ├── widget_detail_page.dart
│       │   │   │   │   │   ├── widget_detail_panel.dart
│       │   │   │   │   │   ├── widget_fields_sliver.dart
│       │   │   │   │   │   └── widget_node_panel.dart
│       │   │   │   │   └── widget_page/
│       │   │   │   │       ├── home_drawer.dart
│       │   │   │   │       ├── phone_widget_content.dart
│       │   │   │   │       ├── slider.dart
│       │   │   │   │       ├── standard_home_page.dart
│       │   │   │   │       ├── standard_home_search.dart
│       │   │   │   │       ├── unit_drawer_header.dart
│       │   │   │   │       ├── widget_list_panel.dart
│       │   │   │   │       └── widget_page.dart
│       │   │   │   └── widgets_bloc_provider.dart
│       │   │   └── widget_module.dart
│       │   ├── pubspec.yaml
│       │   └── test/
│       │       └── widget_module_test.dart
│       ├── widget_repository/
│       │   ├── .gitignore
│       │   ├── .metadata
│       │   ├── CHANGELOG.md
│       │   ├── LICENSE
│       │   ├── README.md
│       │   ├── analysis_options.yaml
│       │   ├── doc/
│       │   │   └── tables_overview.md
│       │   ├── lib/
│       │   │   ├── src/
│       │   │   │   ├── database/
│       │   │   │   │   ├── dao/
│       │   │   │   │   │   ├── category_dao.dart
│       │   │   │   │   │   ├── like_dao.dart
│       │   │   │   │   │   ├── node_dao.dart
│       │   │   │   │   │   ├── widget_dao.dart
│       │   │   │   │   │   └── widget_statistics_dao.dart
│       │   │   │   │   ├── database.dart
│       │   │   │   │   ├── db_impl/
│       │   │   │   │   │   ├── category_db_repository.dart
│       │   │   │   │   │   ├── node_db_repository.dart
│       │   │   │   │   │   └── widget_db_repository.dart
│       │   │   │   │   └── po/
│       │   │   │   │       ├── category_po.dart
│       │   │   │   │       ├── node_po.dart
│       │   │   │   │       └── widget_po.dart
│       │   │   │   ├── memory/
│       │   │   │   │   ├── memory_node_repository.dart
│       │   │   │   │   └── memory_widget_repository.dart
│       │   │   │   ├── model/
│       │   │   │   │   ├── category_model.dart
│       │   │   │   │   ├── model.dart
│       │   │   │   │   ├── node_model.dart
│       │   │   │   │   ├── widget_field_model.dart
│       │   │   │   │   ├── widget_filter.dart
│       │   │   │   │   ├── widget_model.dart
│       │   │   │   │   └── widget_statistics.dart
│       │   │   │   └── repository/
│       │   │   │       ├── category_repository.dart
│       │   │   │       ├── node_repository.dart
│       │   │   │       ├── repository.dart
│       │   │   │       ├── widget_repository.dart
│       │   │   │       ├── widget_statistics_provider.dart
│       │   │   │       └── widget_statistics_service.dart
│       │   │   └── widget_repository.dart
│       │   ├── pubspec.yaml
│       │   └── test/
│       │       └── widget_repository_test.dart
│       └── widget_ui/
│           ├── .gitignore
│           ├── .metadata
│           ├── CHANGELOG.md
│           ├── LICENSE
│           ├── README.md
│           ├── analysis_options.yaml
│           ├── lib/
│           │   ├── src/
│           │   │   ├── bloc/
│           │   │   │   ├── bloc.dart
│           │   │   │   └── liked_widget_bloc.dart
│           │   │   └── view/
│           │   │       ├── field/
│           │   │       │   ├── filed.dart
│           │   │       │   ├── widget_fields_dialog.dart
│           │   │       │   └── widget_fields_page.dart
│           │   │       ├── node_tiled/
│           │   │       │   └── node_tiled.dart
│           │   │       ├── view.dart
│           │   │       └── widget_tiled/
│           │   │           ├── widget_detail_logo.dart
│           │   │           ├── widget_fields_dialog.dart
│           │   │           ├── widget_fields_page.dart
│           │   │           ├── widget_id_view.dart
│           │   │           ├── widget_item.dart
│           │   │           ├── widget_like_tag.dart
│           │   │           ├── widget_logo.dart
│           │   │           └── widget_tiled.dart
│           │   └── widget_ui.dart
│           ├── pubspec.yaml
│           └── test/
│               └── widget_ui_test.dart
├── pubspec.yaml
├── test/
│   ├── app_update_test.dart
│   ├── size.dart
│   └── widget_test.dart
├── web/
│   ├── index.html
│   ├── manifest.json
│   └── splash.js
└── 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
        ├── runner.exe.manifest
        ├── utils.cpp
        ├── utils.h
        ├── win32_window.cpp
        └── win32_window.h

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
/lib/temp
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# Flutter/Dart/Pub related
**/doc/api/
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub-cache/
.pub/
/build/
/android/app/.cxx/
/lib/tools/
/lib/res/constant/github_client_config.dart
# Exceptions to above rules.
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

/build_tools
/libs
/pubspec_overrides.yaml
modules/game_system


================================================
FILE: .metadata
================================================
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled.

version:
  revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
  channel: stable

project_type: app

# Tracks metadata for the flutter migrate command
migration:
  platforms:
    - platform: root
      create_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
      base_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
    - platform: android
      create_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
      base_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
    - platform: ios
      create_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
      base_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
    - platform: linux
      create_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
      base_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
    - platform: macos
      create_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
      base_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
    - platform: web
      create_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
      base_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
    - platform: windows
      create_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268
      base_revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268

  # User provided section

  # List of Local paths (relative to this file) that should be
  # ignored by the migrate tool.
  #
  # Files that are not part of the templates will be ignored by default.
  unmanaged_files:
    - 'lib/main.dart'
    - 'ios/Runner.xcodeproj/project.pbxproj'


================================================
FILE: LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    {one line to give the program's name and a brief idea of what it does.}
    Copyright (C) {year}  {name of author}

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    {project}  Copyright (C) {year}  {fullname}
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.

================================================
FILE: README-EN.md
================================================
<h1 align="center" style="border-bottom: none">
    <b>
        <a href="https://github.com/toly1994328/FlutterUnit">FlutterUnit🔖</a><br>
    </b>
    ⭐️  All Platform Flutter Experience App  ⭐️ <br>
</h1>

<p align="center">
FlutterUnit is a cross-platform experience app, Here, you can fully explore the creativity that Flutter offers.
</p>

<p align="center">
<a href="https://github.com/AppFlowy-IO/appflowy"><img src="https://img.shields.io/github/stars/toly1994328/FlutterUnit.svg?style=flat&logo=github&colorB=deeppink&label=stars"></a>
<a href="https://github.com/AppFlowy-IO/appflowy"><img src="https://img.shields.io/github/forks/toly1994328/FlutterUnit.svg"></a>
<a href="https://opensource.org/licenses/GPL-3.0"><img src="https://img.shields.io/badge/license-GPL-purple.svg" alt="License: GPL-3.0"></a>
</p>

<p align="center">
    <b> Download v3.0.0 : </b>
    <a href="https://github.com/toly1994328/FlutterUnit/releases/download/v3.0.0/FlutterUnit.apk"><b> [Android] </b></a> •
    <a href="https://apps.apple.com/cn/app/flutter-unit/id6450545123"><b>[iOS]</b></a> •
    <a href="https://github.com/toly1994328/FlutterUnit/releases/download/v3.0.0/FlutterUnitMac.zip"><b>[MacOS]</b></a> •
    <a href="https://github.com/toly1994328/FlutterUnit/releases/download/v3.0.0/FlutterUnitWin.zip"><b>[Windows]</b></a> •
    <a href="http://toly1994.com/flutter/"><b>[Web]</b></a>
</p>

<p align="center"><img src="./doc/screens/preview.webp" alt="FlutterUnit App"  /></p>

---


### Env and Build 

#### Flutter Version

```
·]>>  flutter --version
Flutter 3.38.3 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 19074d12f7 (9 days ago) • 2025-11-20 17:53:13 -0500
Engine • hash 8bf2090718fea3655f466049a757f823898f0ad1 (revision 13e658725d) (8 days ago) • 2025-11-20 20:19:23.000Z
Tools • Dart 3.10.1 • DevTools 2.51.1
```

#### Build Application

```
·]>>  git clone https://github.com/toly1994328/FlutterUnit.git
·]>>  cd FlutterUnit

Build Android:
·]>>  flutter build apk --release --target-platform android-arm64 --split-per-abi -v
Build iOS:
·]>>  flutter build ios
Build Windows:
·]>>  flutter build windows  
Build Linux:
·]>>  flutter build linux
Build web:
·]>>  flutter build web
```


#### My Flutter Books 
- 🔥 [免费] [掘金小册 -《Flutter 入门教程》](https://juejin.cn/book/7212822723330834487)
- 🔥  [掘金小册 -《Flutter 语言基础 - 梦始之地》](https://juejin.cn/book/6844733827617652750)
- 🔥  [掘金小册 -《Flutter 绘制指南 - 妙笔生花》](https://juejin.im/book/6844733827265331214)
- 🔥  [掘金小册 -《Flutter 手势探索 - 执掌天下》](https://juejin.cn/book/6896378716427911181)
- 🔥  [掘金小册 -《Flutter 动画探索 - 流光幻影》](https://juejin.cn/book/6965102582473687071)
- 🔥  [掘金小册 -《Flutter 滑动探索 - 珠联璧合》](https://juejin.cn/book/6984685333312962573)
- 🔥  [掘金小册 -《Flutter 布局探索 - 薪火相传》](https://juejin.cn/book/7075958265250578469)
- 🔥  [掘金小册 -《Flutter 渲染机制 - 聚沙成塔》](https://juejin.cn/book/6965102582473687071)

---

- [Flutter环境配置](https://github.com/toly1994328/FlutterUnit/issues/22)
- [Flutter实用插件集录 ](https://github.com/toly1994328/FlutterUnit/issues/41)
- [Flutter要点集录 ](https://github.com/toly1994328/FlutterUnit/labels/point)


---


#### MacOS 桌面版本组件界面

![](./doc/screens/macos-2.webp)

#### Windows 桌面版本组件界面

![](./doc/screens/windows-1.png)


> 开源不易,请我喝咖啡 ~

![](./doc/ewm/coffee1.png)



#### Star History

[![Star History Chart](https://api.star-history.com/svg?repos=toly1994328/FlutterUnit&type=Date)](https://star-history.com/#toly1994328/FlutterUnit&Date)

### 一、组件的展示页面

#### 1. `300+组件收录`

> Flutter源码中的可用的组件一共350个左右,纷繁复杂,也没有明确的分类标准
FlutterUnit 对`大大小小,常用不常用`的组件能收的尽量收录。并`根据个人感觉进行评星 `
`目前收录组件306个`,每个都有至少一个演示展现和代码展示。

| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6acf7b8a1d~tplv-t2oaga2asx-zoom-1.image)|   ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6ad06db455~tplv-t2oaga2asx-image.image)|      ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6ad085632b~tplv-t2oaga2asx-image.image)     |

---

#### 2. 组件详情页

> `213个组件`全部都有详情页。对于重要的组件会详细展现
一般都会有某个演示对应的组件和属性,尽量做到细致,如果有需要补充,欢迎联系我。
`最重要的是: 所有的演示展现都是Flutter的组件形成的,而非图片,这就意味着可操作性更高。`

| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6ad8ba98f1~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6afb3841c4~tplv-t2oaga2asx-image.image)|    ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6afb590185~tplv-t2oaga2asx-image.image) |
|  ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b0ad26b14~tplv-t2oaga2asx-image.image)  | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b13d3fb5b~tplv-t2oaga2asx-image.image)       |![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b15efec19~tplv-t2oaga2asx-image.image)|

---

#### 3. 组件的可操作性

> 对一些操作交互的组件或有可操作性的某些组件,`提供操作演示`

| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b177c5b67~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b21cc116a~tplv-t2oaga2asx-image.image)|   ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b2486b5a5~tplv-t2oaga2asx-image.image)|
|  ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b34887a94~tplv-t2oaga2asx-image.image) | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b3ca09b47~tplv-t2oaga2asx-image.image)      |![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b3d4e0253~tplv-t2oaga2asx-image.image)|

---

#### 4. 相关组件的关联切换
> `相关组件通过link to 可以进行切换, 满足你的探索欲。`
如果有的关联未加入,欢迎联系我,对我来说,加个数字就行了。

| . | . | . |
|------|------------|------------|
|![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b4a4d6005~tplv-t2oaga2asx-image.image)|![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b5066fbf0~tplv-t2oaga2asx-image.image)|   ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b5359b695~tplv-t2oaga2asx-image.image)|


---

#### 5. 代码的查看和分享
> 激动人心的是,你可以通过右侧的图标`展开/隐藏 实现下面效果的代码`
并且`支持分享`,如果你想亲自体验,so,easy ! 而且`代码高亮样式可以自定义`。


| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b6badc1bb~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b6e75653c~tplv-t2oaga2asx-image.image)|   ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b72cdd78f~tplv-t2oaga2asx-image.image)|

---


### 二、全局配置

#### 1. 颜色主题
> 只提供八种颜色,可在`右滑菜单页`的`我的主题`配置,`可以拓展`

| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c2e937170~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c3253c4ec~tplv-t2oaga2asx-image.image) |    ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c4f97f74d~tplv-t2oaga2asx-image.image) |

---


#### 2.字体配置

> 支持全局字体设置,`可以拓展`

| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c5448cb6c~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c55542837~tplv-t2oaga2asx-image.image) |   ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c5bec6c56~tplv-t2oaga2asx-image.image)|
---


#### 3.item样式设置

> 支持item样式设置,`可以拓展,支持征集`,详见`Flutter Unit 1.0 征集方案`

| . | . | . |
|------|------------|------------|
|![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c7d4b5988~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c8935dfe1~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c8f90d6ec~tplv-t2oaga2asx-image.image)| 
---

#### 4.代码面板风格设置

> 支持代码风格设置,`可以拓展,支持征集`,详见`Flutter Unit 1.0 征集方案`

| . | . |
|------|------------|
|![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6cac86d591~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6cac7d5bc7~tplv-t2oaga2asx-image.image)|
![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6cb75e5450~tplv-t2oaga2asx-image.image)|![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6cd88c7ff9~tplv-t2oaga2asx-image.image)| 

---



### 三、搜索与收藏功能


#### 1.搜索功能

> 由于Flutter中Widget比较杂乱,不太好分类,所以搜索是非常重要的
另外可以根据星级进行过滤,支持多选。目前正在考虑根据功能分类,之后会有所完善。


| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c1a355ad3~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c211dfc99~tplv-t2oaga2asx-image.image)|    ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c28562ec5~tplv-t2oaga2asx-image.image) |

---

#### 2.收藏功能

| 添加收藏集 | 修改收藏集 | 删除收藏集 |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b7979f4ae~tplv-t2oaga2asx-image.image)  | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b97f00113~tplv-t2oaga2asx-image.image)    | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6ba47f3fd2~tplv-t2oaga2asx-image.image)       | 

| 长按右菜单滑页 | 长按左菜单滑页 | 详情内长按展示收藏菜单 |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6beb370b8b~tplv-t2oaga2asx-image.image) |![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6befe43cd2~tplv-t2oaga2asx-image.image)        | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6bfd3cd42f~tplv-t2oaga2asx-image.image)       |

| 删除与数据同步 | 组件加入收藏集 | 收藏集支持多选 |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6ba47ab64c~tplv-t2oaga2asx-image.image)  | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6badf6ee28~tplv-t2oaga2asx-image.image)        | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6bb380c7f5~tplv-t2oaga2asx-image.image)   |

> `FlutterUnit 2.0 `目前基本就是这么多功能,可以在Github中下载打包后的apk玩玩
希望能对你的Flutter学习有所帮助。

---


================================================
FILE: README.md
================================================
<h1 align="center" style="border-bottom: none">
    <b>
        <a href="https://github.com/toly1994328/FlutterUnit">FlutterUnit</a><br>
    </b>
    ⭐️  全平台 Flutter 探索应用  ⭐️ <br>
</h1>

<p align="center">
FlutterUnit 是一个全平台体验应用,你可以在这里尽情体验 Flutter 带来的创造力。
</p>

<p align="center">
<a href="https://github.com/toly1994328/FlutterUnit"><img src="https://img.shields.io/github/stars/toly1994328/FlutterUnit.svg?style=flat&logo=github&colorB=deeppink&label=stars"></a>
<a href="https://github.com/toly1994328/FlutterUnit"><img src="https://img.shields.io/github/forks/toly1994328/FlutterUnit.svg"></a>
<a href="https://opensource.org/licenses/GPL-3.0"><img src="https://img.shields.io/badge/license-GPL3.0-purple.svg" alt="License: GPL-3.0"></a>
</p>

<p align="center">
    <b> 下载 App: </b>
    <a href="https://github.com/toly1994328/FlutterUnit/releases/download/v3.2.0/FlutterUnit.apk"><b> [Android] </b></a> •
    <a href="https://apps.apple.com/cn/app/flutter-unit/id6450545123"><b>[iOS]</b></a> •
    <a href="https://github.com/toly1994328/FlutterUnit/releases/download/v3.2.0/FlutterUnit.dmg"><b>[MacOS]</b></a> •
    <a href="https://github.com/toly1994328/FlutterUnit/releases/download/v3.2.0/FlutterUnit.exe"><b>[Windows]</b></a> •
    <a href="http://toly1994.com/flutter/"><b>[Web]</b></a>
</p>

<p align="center"><img src="./doc/screens/preview.webp" alt="FlutterUnit App"  /></p>

---

### 环境与构建

#### Flutter 版本

```
·]>>  flutter --version
Flutter 3.38.3 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 19074d12f7 (9 days ago) • 2025-11-20 17:53:13 -0500
Engine • hash 8bf2090718fea3655f466049a757f823898f0ad1 (revision 13e658725d) (8 days ago) • 2025-11-20 20:19:23.000Z
Tools • Dart 3.10.1 • DevTools 2.51.1
```

#### 构建应用

```
·]>>  git clone https://github.com/toly1994328/FlutterUnit.git
·]>>  cd FlutterUnit

Build Android:
·]>>  flutter build apk --release --target-platform android-arm64 --split-per-abi -v
Build iOS:
·]>>  flutter build ios
Build Windows:
·]>>  flutter build windows  
Build Linux:
·]>>  flutter build linux
Build web:
·]>>  flutter build web
```

#### Flutter Unit 周边
- 🔥 [免费] [掘金小册 -《Flutter 入门教程》](https://juejin.cn/book/7212822723330834487)
- 🔥  [掘金小册 -《Flutter 语言基础 - 梦始之地》](https://juejin.cn/book/6844733827617652750)
- 🔥  [掘金小册 -《Flutter 绘制指南 - 妙笔生花》](https://juejin.im/book/6844733827265331214)
- 🔥  [掘金小册 -《Flutter 手势探索 - 执掌天下》](https://juejin.cn/book/6896378716427911181)
- 🔥  [掘金小册 -《Flutter 动画探索 - 流光幻影》](https://juejin.cn/book/6965102582473687071)
- 🔥  [掘金小册 -《Flutter 滑动探索 - 珠联璧合》](https://juejin.cn/book/6984685333312962573)
- 🔥  [掘金小册 -《Flutter 布局探索 - 薪火相传》](https://juejin.cn/book/7075958265250578469)
- 🔥  [掘金小册 -《Flutter 渲染机制 - 聚沙成塔》](https://juejin.cn/book/6965102582473687071)

---

- [Flutter环境配置](https://github.com/toly1994328/FlutterUnit/issues/22)
- [Flutter实用插件集录 ](https://github.com/toly1994328/FlutterUnit/issues/41)
- [Flutter要点集录 ](https://github.com/toly1994328/FlutterUnit/labels/point)

---

#### MacOS 桌面版本组件界面

![](./doc/screens/macos-2.webp)

#### Windows 桌面版本组件界面

![](./doc/screens/windows-1.png)


> 开源不易,请我喝咖啡 ~

![](./doc/ewm/coffee1.png)



#### Star History

[![Star History Chart](https://api.star-history.com/svg?repos=toly1994328/FlutterUnit&type=Date)](https://star-history.com/#toly1994328/FlutterUnit&Date)

### 一、组件的展示页面

#### 1. `300+组件收录`

> Flutter源码中的可用的组件一共350个左右,纷繁复杂,也没有明确的分类标准
FlutterUnit 对`大大小小,常用不常用`的组件能收的尽量收录。并`根据个人感觉进行评星 `
`目前收录组件306个`,每个都有至少一个演示展现和代码展示。

| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6acf7b8a1d~tplv-t2oaga2asx-zoom-1.image)|   ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6ad06db455~tplv-t2oaga2asx-image.image)|      ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6ad085632b~tplv-t2oaga2asx-image.image)     |

---

#### 2. 组件详情页

> `213个组件`全部都有详情页。对于重要的组件会详细展现
一般都会有某个演示对应的组件和属性,尽量做到细致,如果有需要补充,欢迎联系我。
`最重要的是: 所有的演示展现都是Flutter的组件形成的,而非图片,这就意味着可操作性更高。`

| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6ad8ba98f1~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6afb3841c4~tplv-t2oaga2asx-image.image)|    ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6afb590185~tplv-t2oaga2asx-image.image) |
|  ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b0ad26b14~tplv-t2oaga2asx-image.image)  | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b13d3fb5b~tplv-t2oaga2asx-image.image)       |![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b15efec19~tplv-t2oaga2asx-image.image)|

---

#### 3. 组件的可操作性

> 对一些操作交互的组件或有可操作性的某些组件,`提供操作演示`

| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b177c5b67~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b21cc116a~tplv-t2oaga2asx-image.image)|   ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b2486b5a5~tplv-t2oaga2asx-image.image)|
|  ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b34887a94~tplv-t2oaga2asx-image.image) | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b3ca09b47~tplv-t2oaga2asx-image.image)      |![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b3d4e0253~tplv-t2oaga2asx-image.image)|

---

#### 4. 相关组件的关联切换
> `相关组件通过link to 可以进行切换, 满足你的探索欲。`
如果有的关联未加入,欢迎联系我,对我来说,加个数字就行了。

| . | . | . |
|------|------------|------------|
|![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b4a4d6005~tplv-t2oaga2asx-image.image)|![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b5066fbf0~tplv-t2oaga2asx-image.image)|   ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b5359b695~tplv-t2oaga2asx-image.image)|


---

#### 5. 代码的查看和分享
> 激动人心的是,你可以通过右侧的图标`展开/隐藏 实现下面效果的代码`
并且`支持分享`,如果你想亲自体验,so,easy ! 而且`代码高亮样式可以自定义`。


| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b6badc1bb~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b6e75653c~tplv-t2oaga2asx-image.image)|   ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b72cdd78f~tplv-t2oaga2asx-image.image)|

---


### 二、全局配置

#### 1. 颜色主题
> 只提供八种颜色,可在`右滑菜单页`的`我的主题`配置,`可以拓展`

| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c2e937170~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c3253c4ec~tplv-t2oaga2asx-image.image) |    ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c4f97f74d~tplv-t2oaga2asx-image.image) |

---


#### 2.字体配置

> 支持全局字体设置,`可以拓展`

| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c5448cb6c~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c55542837~tplv-t2oaga2asx-image.image) |   ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c5bec6c56~tplv-t2oaga2asx-image.image)|
---


#### 3.item样式设置

> 支持item样式设置,`可以拓展,支持征集`,详见`Flutter Unit 1.0 征集方案`

| . | . | . |
|------|------------|------------|
|![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c7d4b5988~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c8935dfe1~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c8f90d6ec~tplv-t2oaga2asx-image.image)| 
---

#### 4.代码面板风格设置

> 支持代码风格设置,`可以拓展,支持征集`,详见`Flutter Unit 1.0 征集方案`

| . | . |
|------|------------|
|![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6cac86d591~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6cac7d5bc7~tplv-t2oaga2asx-image.image)|
![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6cb75e5450~tplv-t2oaga2asx-image.image)|![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6cd88c7ff9~tplv-t2oaga2asx-image.image)| 

---



### 三、搜索与收藏功能


#### 1.搜索功能

> 由于Flutter中Widget比较杂乱,不太好分类,所以搜索是非常重要的
另外可以根据星级进行过滤,支持多选。目前正在考虑根据功能分类,之后会有所完善。


| . | . | . |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c1a355ad3~tplv-t2oaga2asx-image.image)| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c211dfc99~tplv-t2oaga2asx-image.image)|    ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6c28562ec5~tplv-t2oaga2asx-image.image) |

---

#### 2.收藏功能

| 添加收藏集 | 修改收藏集 | 删除收藏集 |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b7979f4ae~tplv-t2oaga2asx-image.image)  | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6b97f00113~tplv-t2oaga2asx-image.image)    | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6ba47f3fd2~tplv-t2oaga2asx-image.image)       | 

| 长按右菜单滑页 | 长按左菜单滑页 | 详情内长按展示收藏菜单 |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6beb370b8b~tplv-t2oaga2asx-image.image) |![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6befe43cd2~tplv-t2oaga2asx-image.image)        | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6bfd3cd42f~tplv-t2oaga2asx-image.image)       |

| 删除与数据同步 | 组件加入收藏集 | 收藏集支持多选 |
|------|------------|------------|
| ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6ba47ab64c~tplv-t2oaga2asx-image.image)  | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6badf6ee28~tplv-t2oaga2asx-image.image)        | ![](https://p1-jj.byteimg.com/tos-cn-i-t2oaga2asx/gold-user-assets/2020/5/3/171dae6bb380c7f5~tplv-t2oaga2asx-image.image)   |

> `FlutterUnit 2.0 `目前基本就是这么多功能,可以在Github中下载打包后的apk玩玩
希望能对你的Flutter学习有所帮助。

---


================================================
FILE: analysis_options.yaml
================================================
# This file configures the analyzer, which statically analyzes Dart code to
# check for errors, warnings, and lints.
#
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
# invoked from the command line by running `flutter analyze`.

# The following line activates a set of recommended lints for Flutter apps,
# packages, and plugins designed to encourage good coding practices.
include: package:flutter_lints/flutter.yaml

linter:
  rules:
     avoid_print: false  # Uncomment to disable the `avoid_print` rule
     file_names: false

analyzer:
#  exclude:
#    - modules/widget_system/widgets/**





================================================
FILE: android/.gitignore
================================================
gradle-wrapper.jar
/.gradle
/captures/
/gradlew
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java

# Remember to never publicly share your keystore.
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
key.properties
**/*.keystore
**/*.jks


================================================
FILE: android/app/build.gradle.kts
================================================
plugins {
    id("com.android.application")
    id("kotlin-android")
    // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
    id("dev.flutter.flutter-gradle-plugin")
}

android {
    namespace = "com.toly1994.flutter_unit"
    compileSdk = flutter.compileSdkVersion
    ndkVersion = flutter.ndkVersion
    packagingOptions {
        jniLibs {
            useLegacyPackaging = true
        }
        dex {
            useLegacyPackaging = true
        }
    }
    compileOptions {
        sourceCompatibility = JavaVersion.VERSION_11
        targetCompatibility = JavaVersion.VERSION_11
    }

    kotlinOptions {
        jvmTarget = JavaVersion.VERSION_11.toString()
    }
    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId = "com.toly1994.flutter_unit"
        // You can update the following values to match your application needs.
        // For more information, see: https://flutter.dev/to/review-gradle-config.
        minSdk = flutter.minSdkVersion
        targetSdk = flutter.targetSdkVersion
        versionCode = flutter.versionCode
        versionName = flutter.versionName
    }

    buildTypes {
        getByName("release") {
            // TODO: Add your own signing config for the release build.
            // Signing with the debug keys for now, so `flutter run --release` works.
            signingConfig = signingConfigs.getByName("debug")
            isShrinkResources = true  // 移除未使用的资源
            isMinifyEnabled = true    // 启用 R8 代码压缩
            proguardFiles(
                getDefaultProguardFile("proguard-android-optimize.txt"),
                "proguard-rules.pro"
            )
            ndk {
                debugSymbolLevel = "none"
            }
        }
    }
}

flutter {
    source = "../.."
}


================================================
FILE: android/app/proguard-rules.pro
================================================
-dontwarn javax.annotation.**
-keep class javax.annotation.** { *; }

================================================
FILE: android/app/src/debug/AndroidManifest.xml
================================================
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.toly1994.flutter_unit">
    <!-- Flutter needs it to communicate with the running application
         to allow setting breakpoints, to provide hot reload, etc.
    -->
    <uses-permission android:name="android.permission.INTERNET"/>
</manifest>


================================================
FILE: android/app/src/main/AndroidManifest.xml
================================================
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-permission android:name="android.permission.INTERNET"/>
    <!--(if you want to upload google store,can not add this permission)-->
    <uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />

    <queries>
        <intent>
            <action android:name="android.intent.action.VIEW" />
            <data android:scheme="https" />
        </intent>
        <intent>
            <action android:name="android.intent.action.DIAL" />
            <data android:scheme="tel" />
        </intent>
        <intent>
            <action android:name="android.intent.action.SENDTO" />
            <data android:scheme="smsto" />
        </intent>
        <intent>
            <action android:name="android.intent.action.SEND" />
            <data android:mimeType="*/*" />
        </intent>
    </queries>
   <application
        android:label="flutter_unit"
        android:icon="@mipmap/logo">
        <activity
            android:name=".MainActivity"
            android:launchMode="singleTop"
            android:theme="@style/LaunchTheme"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
            android:hardwareAccelerated="true"
            android:exported="true"
            android:windowSoftInputMode="adjustResize">
            <!-- Specifies an Android theme to apply to this Activity as soon as
                 the Android process has started. This theme is visible to the user
                 while the Flutter UI initializes. After that, this theme continues
                 to determine the Window background behind the Flutter UI. -->
            <meta-data
              android:name="io.flutter.embedding.android.NormalTheme"
              android:resource="@style/NormalTheme"
              />
            <!-- Displays an Android View that continues showing the launch screen
                 Drawable until Flutter paints its first frame, then this splash
                 screen fades out. A splash screen is useful to avoid any visual
                 gap between the end of Android's launch screen and the painting of
                 Flutter's first frame. -->
            <meta-data
              android:name="io.flutter.embedding.android.SplashScreenDrawable"
              android:resource="@drawable/launch_background"
              />
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
        <!-- Don't delete the meta-data below.
             This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
        <meta-data
            android:name="flutterEmbedding"
            android:value="2" />
    </application>
</manifest>


================================================
FILE: android/app/src/main/kotlin/com/toly1994/flutter_unit/MainActivity.kt
================================================
package com.toly1994.flutter_unit

import io.flutter.embedding.android.FlutterActivity

class MainActivity: FlutterActivity() {
}


================================================
FILE: android/app/src/main/res/drawable/launch_background.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@android:color/white" />

    <!-- You can insert your own image assets here -->
    <!-- <item>
        <bitmap
            android:gravity="center"
            android:src="@mipmap/launch_image" />
    </item> -->
</layer-list>


================================================
FILE: android/app/src/main/res/drawable-v21/launch_background.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<!-- Modify this file to customize your launch splash screen -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="?android:colorBackground" />

    <!-- You can insert your own image assets here -->
    <!-- <item>
        <bitmap
            android:gravity="center"
            android:src="@mipmap/launch_image" />
    </item> -->
</layer-list>


================================================
FILE: android/app/src/main/res/values/styles.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is off -->
    <style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
        <!-- Show a splash screen on the activity. Automatically removed when
             Flutter draws its first frame -->
        <item name="android:windowBackground">@drawable/launch_background</item>
    </style>
    <!-- Theme applied to the Android Window as soon as the process has started.
         This theme determines the color of the Android Window while your
         Flutter UI initializes, as well as behind your Flutter UI while its
         running.
         
         This Theme is only used starting with V2 of Flutter's Android embedding. -->
    <style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
        <item name="android:windowBackground">?android:colorBackground</item>
    </style>
</resources>


================================================
FILE: android/app/src/main/res/values-night/styles.xml
================================================
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <!-- Theme applied to the Android Window while the process is starting when the OS's Dark Mode setting is on -->
    <style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
        <!-- Show a splash screen on the activity. Automatically removed when
             Flutter draws its first frame -->
        <item name="android:windowBackground">@drawable/launch_background</item>
    </style>
    <!-- Theme applied to the Android Window as soon as the process has started.
         This theme determines the color of the Android Window while your
         Flutter UI initializes, as well as behind your Flutter UI while its
         running.
         
         This Theme is only used starting with V2 of Flutter's Android embedding. -->
    <style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
        <item name="android:windowBackground">?android:colorBackground</item>
    </style>
</resources>


================================================
FILE: android/app/src/profile/AndroidManifest.xml
================================================
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.toly1994.flutter_unit">
    <!-- Flutter needs it to communicate with the running application
         to allow setting breakpoints, to provide hot reload, etc.
    -->
    <uses-permission android:name="android.permission.INTERNET"/>
</manifest>


================================================
FILE: android/build/reports/problems/problems-report.html
================================================
<!DOCTYPE html>

<html lang="en">
<head>
    <!-- Required meta tags -->
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

                    <style type="text/css">
                /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, footer, header, nav, section {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

figcaption, figure, main {
    display: block
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b, strong {
    font-weight: inherit
}

b, strong {
    font-weight: bolder
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

dfn {
    font-style: italic
}

mark {
    background-color: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

audio, video {
    display: inline-block
}

audio:not([controls]) {
    display: none;
    height: 0
}

img {
    border-style: none
}

svg:not(:root) {
    overflow: hidden
}

button, input, optgroup, select, textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    display: inline-block;
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details, menu {
    display: block
}

summary {
    display: list-item
}

canvas {
    display: inline-block
}

template {
    display: none
}

[hidden] {
    display: none
}

/* configuration cache styles */

.report-wrapper {
    margin: 0;
    padding: 0 24px;
}

.gradle-logo {
    width: 32px;
    height: 24px;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIKADAAQAAAABAAAAGAAAAAA915G0AAAD5klEQVRIDbVWC0xTZxT+emmhVUEeA1/ROh/tFAFFGK7oJisIKsNVoOwBbJPowEWHzikRxeiMRpwwjDWRBHQLIzOmiRhe22BT40TitiyaMBQFfMEeLMIEaSmk+/+rvd7be4no6Elu7n++c/5zzv845/wyOyG4iGyDgzCdNOPLM9W41n4bnmNUiHo5DNsz0hGsmcV6lbkyAOOWXJjrz4qWp1C4o3z/LqzWL4VcJB1FIHmZHn/f78a6pDcxbeIEfNvQiPwTZbDZBpC24zOEaGfDpTsgtZby6u+QlrubFWUY3nh6AH39/ahr/Bn1jZfxW3ML2js60dtvgbtcQVblj8CZM7A0PBSrol6Ft+c4KZ8iTB1nwN0//8IEP9/hA2i924Gir0/iq8oa/NvbJzLiDKiUSqTE6pGVbEBY4BxnsYAPSnwXTa3tLCZ5BF3dPdAkGNHzoFcwcaRMnC4CeZkZiAgKFE252nITC1Pew9Dj5GNEGgS4Rbb5eZ1Te7UXG6FLX4cV6zeh5kIDaDpSunL9Boyf5nLOpwT4Sx+BxWrFK8QAnTAapPRQwofcj86uLoG59cbVEOzA0NAQNh38Atn5RSjY8rFAmc/I3dyQvOx1PsSNVy7Roa3ajHDePbBYLSLn1MaGd5KFAXy07xAOl59C6elK+I73hIHcbGd6wXs8qkyH8FZcjLOI5X/9/TrOnLsAldJDUu4As1NToFFPe3IEpm/M2HigwCFnU6t4Zw6Ck1JhGRhgcXq5juXloKyqFnlHirmz5CaNcEAv59kSE9wVikcB3O78A/MSU0Fznk/H9+yAetJEnPr+B8RFLsLcGS8ia28+qQuX+WrPNNZOV+Nc6VH4+3iz89g0pEaLzRUiQ3LGDWsM8Qidq2WL0PGKKlgf74ZIeQTAfFJ6a44WIsDXh9OW/dPdY58aawC9KK6kpOgolO7JxViVSuBGXnvxksudZ5F0O5yzGYxMJnBOGaau4fnPU2RNAtCFBKFoa7akczaAptY2iWmjB33+yQa4kZwfjpi2ex3Dyf43vuAljWQ/4Btmei1WPj+q45hF4U+1J4fEizCEvNf0EWHoIW244sfzoN1RipaT2kDfdjfv3MNpojdISjmfIheE8Fnp8WR9vJ2Zr+O+bYUmO+kJ9KnIUtf9bnvY2x9wcqrrvnCJvfL8Tw4V9v9LU7PdKzJaoNdy645AR4ph1JMncZHRKrVvYyYY5kmP8iO1v2T3dk6HDtYmrgJtOnwKnaPFrg8z+BBX7QSgEyOPJfX9Qd9DFs40GgTOHbrBs2ch4bXFuEG2mmFkeD9hpUMk+NMXEe0TNtsg/Ly94DVurEAuxfwHC1WiVbe0U7MAAAAASUVORK5CYII=");
    background-size: contain;
}

.header {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 24px 0 24px;
    background-color: white;
    z-index: 1;
}

.learn-more {
    margin-left: auto;
    align-self: center;
    font-size: 0.875rem;
    font-weight: normal;
}

.title {
    display: flex;
    align-items: center;
    padding: 18px 0 24px 0;
    flex: 1 0 100%;
}

.content {
    font-size: 0.875rem;
    padding: 240px 0 48px;
    overflow-x: auto;
    white-space: nowrap;
}

.content ol:first-of-type {
    margin: 0;
}

.tree-btn {
    cursor: pointer;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: -0.2em;
}

.tree-btn.collapsed {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 512"><path d="M166.9 264.5l-117.8 116c-4.7 4.7-12.3 4.7-17 0l-7.1-7.1c-4.7-4.7-4.7-12.3 0-17L127.3 256 25.1 155.6c-4.7-4.7-4.7-12.3 0-17l7.1-7.1c4.7-4.7 12.3-4.7 17 0l117.8 116c4.6 4.7 4.6 12.3-.1 17z" fill="%23999999" stroke="%23999999"/></svg>');
}

.tree-btn.expanded {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><path d="M119.5 326.9L3.5 209.1c-4.7-4.7-4.7-12.3 0-17l7.1-7.1c4.7-4.7 12.3-4.7 17 0L128 287.3l100.4-102.2c4.7-4.7 12.3-4.7 17 0l7.1 7.1c4.7 4.7 4.7 12.3 0 17L136.5 327c-4.7 4.6-12.3 4.6-17-.1z" fill="%23999999" stroke="%23999999"/></svg>');
}

ul .tree-btn {
    margin-right: 3px;
}

.leaf-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 512"><path d="M32 256 H224" stroke="%23999999" stroke-width="48" stroke-linecap="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-top: -0.2em;
}

.invisible-text {
    user-select: all; /* Allow the text to be selectable */
    color: transparent; /* Hide the text */
    text-indent: -9999px; /* Move the text out of view */
    position: relative;
    white-space: pre; /* Preserve meaningful whitespace in the invisible text for copying */
}

.text-for-copy {
    display: inline-block;
}

.enum-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1024 1024"><circle cx="512" cy="512" r="200" /></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-inline-start: 0.5ex;
    margin-inline-end: 0.5ex;
    margin-top: -0.2em;
}

.error-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z" fill="%23FC461E" stroke="%23FC461E"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-inline-start: 0.5ex;
    margin-inline-end: 0.5ex;
    margin-top: -0.2em;
}

.advice-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg width="800px" height="800px" viewBox="-4.93 0 122.88 122.88" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"  style="enable-background:new 0 0 113.01 122.88" xml:space="preserve"><g><path d="M44.13,102.06c-1.14,0.03-2.14-0.81-2.3-1.96c-0.17-1.2,0.64-2.31,1.82-2.54c-1.3-7.37-4.85-11.43-8.6-15.72 c-2.92-3.34-5.95-6.81-8.34-11.92c-2.35-5.03-3.64-10.23-3.6-15.63c0.05-5.4,1.42-10.96,4.4-16.71c0.02-0.04,0.04-0.07,0.06-0.11 l0,0c3.91-6.62,9.38-11.04,15.47-13.52c5.11-2.09,10.66-2.8,16.1-2.3c5.42,0.5,10.73,2.2,15.37,4.94 c5.9,3.49,10.75,8.67,13.42,15.21c1.44,3.54,2.42,7.49,2.54,11.82c0.12,4.31-0.62,8.96-2.61,13.88 c-2.66,6.59-6.18,10.68-9.47,14.51c-3.03,3.53-5.85,6.81-7.42,11.84c0.89,0.21,1.59,0.94,1.73,1.9c0.17,1.24-0.7,2.39-1.94,2.56 l-0.77,0.11c-0.14,1.09-0.23,2.26-0.27,3.51l0.25-0.04c1.24-0.17,2.39,0.7,2.56,1.94c0.17,1.24-0.7,2.39-1.94,2.56l-0.78,0.11 c0.01,0.15,0.02,0.3,0.03,0.45l0,0c0.07,0.88,0.08,1.73,0.03,2.54l0.13-0.02c1.25-0.15,2.38,0.74,2.54,1.98 c0.15,1.25-0.74,2.38-1.98,2.54l-1.68,0.21c-1.2,3.11-3.34,5.48-5.87,6.94c-1.74,1.01-3.67,1.59-5.61,1.71 c-1.97,0.12-3.96-0.25-5.78-1.13c-2.08-1.02-3.94-2.71-5.29-5.14c-0.65-0.33-1.13-0.97-1.23-1.75c-0.04-0.31-0.01-0.61,0.07-0.89 c-0.39-1.16-0.68-2.43-0.87-3.83l-0.07,0.01c-1.24,0.17-2.39-0.7-2.56-1.94c-0.17-1.24,0.7-2.39,1.94-2.56l0.54-0.08 C44.19,104.32,44.18,103.16,44.13,102.06L44.13,102.06z M2.18,58.86C1.01,58.89,0.04,57.98,0,56.81c-0.04-1.17,0.88-2.14,2.05-2.18 l8.7-0.3c1.17-0.04,2.14,0.88,2.18,2.05c0.04,1.17-0.88,2.14-2.05,2.18L2.18,58.86L2.18,58.86z M110.68,50.25 c1.16-0.12,2.2,0.73,2.32,1.89c0.12,1.16-0.73,2.2-1.89,2.32l-8.66,0.91c-1.16,0.12-2.2-0.73-2.32-1.89 c-0.12-1.16,0.73-2.2,1.89-2.32L110.68,50.25L110.68,50.25z M94.91,14.78c0.65-0.97,1.96-1.23,2.93-0.58 c0.97,0.65,1.23,1.96,0.58,2.93l-4.84,7.24c-0.65,0.97-1.96,1.23-2.93,0.58c-0.97-0.65-1.23-1.96-0.58-2.93L94.91,14.78 L94.91,14.78z M57.63,2.06c0.03-1.17,1-2.09,2.16-2.06c1.17,0.03,2.09,1,2.06,2.16l-0.22,8.7c-0.03,1.17-1,2.09-2.16,2.06 c-1.17-0.03-2.09-1-2.06-2.16L57.63,2.06L57.63,2.06z M13.88,15.53c-0.86-0.8-0.9-2.14-0.11-2.99c0.8-0.86,2.14-0.9,2.99-0.11 l6.37,5.94c0.86,0.8,0.9,2.14,0.11,2.99c-0.8,0.86-2.14,0.9-2.99,0.11L13.88,15.53L13.88,15.53z M47.88,96.95l18.49-2.63 c1.59-6.7,5.05-10.73,8.8-15.08c3.08-3.58,6.36-7.4,8.76-13.34c1.76-4.35,2.41-8.43,2.31-12.19c-0.1-3.75-0.96-7.21-2.24-10.34 c-2.3-5.63-6.51-10.11-11.65-13.15c-4.11-2.43-8.8-3.94-13.59-4.37c-4.77-0.44-9.64,0.19-14.13,2.02 c-5.26,2.15-9.99,5.97-13.39,11.72c-2.64,5.12-3.86,10.02-3.9,14.73c-0.04,4.74,1.11,9.33,3.2,13.8c2.13,4.56,4.97,7.8,7.69,10.92 C42.47,83.9,46.48,88.49,47.88,96.95L47.88,96.95z M65.62,99.02l-17.27,2.45c0.05,1.1,0.07,2.25,0.05,3.47l17.05-2.42 C65.47,101.29,65.52,100.12,65.62,99.02L65.62,99.02z M48.49,109.52c0.12,0.92,0.3,1.76,0.53,2.54l16.55-2.04 c0.11-0.86,0.13-1.77,0.05-2.74l0,0l0-0.02l-0.01-0.17L48.49,109.52L48.49,109.52z M51.37,116.36c0.64,0.67,1.35,1.19,2.1,1.55 c1.15,0.56,2.42,0.79,3.67,0.72c1.29-0.08,2.57-0.47,3.74-1.15c1.1-0.64,2.09-1.53,2.88-2.65L51.37,116.36L51.37,116.36z"/></g></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-inline-start: 0.5ex;
    margin-inline-end: 0.5ex;
    margin-top: -0.2em;
}

.warning-icon {
    display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M270.2 160h35.5c3.4 0 6.1 2.8 6 6.2l-7.5 196c-.1 3.2-2.8 5.8-6 5.8h-20.5c-3.2 0-5.9-2.5-6-5.8l-7.5-196c-.1-3.4 2.6-6.2 6-6.2zM288 388c-15.5 0-28 12.5-28 28s12.5 28 28 28 28-12.5 28-28-12.5-28-28-28zm281.5 52L329.6 24c-18.4-32-64.7-32-83.2 0L6.5 440c-18.4 31.9 4.6 72 41.6 72H528c36.8 0 60-40 41.5-72zM528 480H48c-12.3 0-20-13.3-13.9-24l240-416c6.1-10.6 21.6-10.7 27.7 0l240 416c6.2 10.6-1.5 24-13.8 24z" fill="%23DEAD22" stroke="%23DEAD22"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-inline-start: 0.3ex;
    margin-inline-end: 1.1ex;
    margin-top: -0.1em;
}

.documentation-button {
    cursor: pointer;
    display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M256 340c-15.464 0-28 12.536-28 28s12.536 28 28 28 28-12.536 28-28-12.536-28-28-28zm7.67-24h-16c-6.627 0-12-5.373-12-12v-.381c0-70.343 77.44-63.619 77.44-107.408 0-20.016-17.761-40.211-57.44-40.211-29.144 0-44.265 9.649-59.211 28.692-3.908 4.98-11.054 5.995-16.248 2.376l-13.134-9.15c-5.625-3.919-6.86-11.771-2.645-17.177C185.658 133.514 210.842 116 255.67 116c52.32 0 97.44 29.751 97.44 80.211 0 67.414-77.44 63.849-77.44 107.408V304c0 6.627-5.373 12-12 12zM256 40c118.621 0 216 96.075 216 216 0 119.291-96.61 216-216 216-119.244 0-216-96.562-216-216 0-119.203 96.602-216 216-216m0-32C119.043 8 8 119.083 8 256c0 136.997 111.043 248 248 248s248-111.003 248-248C504 119.083 392.957 8 256 8z" fill="%23999999" stroke="%23999999"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-inline-start: 0.5ex;
    margin-inline-end: 0.5ex;
    margin-top: -0.2em;
}

.documentation-button::selection {
    color: transparent;
}

.documentation-button:hover {
    color: transparent;
}

.copy-button {
    cursor: pointer;
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M433.941 193.941l-51.882-51.882A48 48 0 0 0 348.118 128H320V80c0-26.51-21.49-48-48-48h-66.752C198.643 13.377 180.858 0 160 0s-38.643 13.377-45.248 32H48C21.49 32 0 53.49 0 80v288c0 26.51 21.49 48 48 48h80v48c0 26.51 21.49 48 48 48h224c26.51 0 48-21.49 48-48V227.882a48 48 0 0 0-14.059-33.941zm-22.627 22.627a15.888 15.888 0 0 1 4.195 7.432H352v-63.509a15.88 15.88 0 0 1 7.431 4.195l51.883 51.882zM160 30c9.941 0 18 8.059 18 18s-8.059 18-18 18-18-8.059-18-18 8.059-18 18-18zM48 384c-8.822 0-16-7.178-16-16V80c0-8.822 7.178-16 16-16h66.752c6.605 18.623 24.389 32 45.248 32s38.643-13.377 45.248-32H272c8.822 0 16 7.178 16 16v48H176c-26.51 0-48 21.49-48 48v208H48zm352 96H176c-8.822 0-16-7.178-16-16V176c0-8.822 7.178-16 16-16h144v72c0 13.2 10.8 24 24 24h72v208c0 8.822-7.178 16-16 16z" fill="%23999999" stroke="%23999999"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-inline-start: 0.5ex;
    margin-top: -0.2em;
}

.groups{
    display: flex;
    border-bottom: 1px solid #EDEEEF;
    flex: 1 0 100%;
}

.uncategorized {
    display: flex;
    border-top: 4px solid #EDEEEF;
    flex: 1 0 100%;
}

.group-selector {
    padding: 0 52px 24px 0;
    font-size: 0.9rem;
    font-weight: bold;
    color: #999999;
    cursor: pointer;
}

.group-selector__count {
    margin: 0 8px;
    border-radius: 8px;
    background-color: #999;
    color: #fff;
    padding: 1px 8px 2px;
    font-size: 0.75rem;
}

.group-selector--active {
    color: #02303A;
    cursor: auto;
}

.group-selector--active .group-selector__count {
    background-color: #686868;
}

.group-selector--disabled {
    cursor: not-allowed;
}

.accordion-header {
    cursor: pointer;
}

.container {
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.stacktrace {
    border-radius: 4px;
    overflow-x: auto;
    padding: 0.5rem;
    margin-bottom: 0;
    min-width: 1000px;
}

/* Lato (bold, regular) */
@font-face {
    font-display: swap;
    font-family: Lato;
    font-weight: 500;
    font-style: normal;
    src: url("https://assets.gradle.com/lato/fonts/lato-semibold/lato-semibold.woff2") format("woff2"),
    url("https://assets.gradle.com/lato/fonts/lato-semibold/lato-semibold.woff") format("woff");
}

@font-face {
    font-display: swap;
    font-family: Lato;
    font-weight: bold;
    font-style: normal;
    src: url("https://assets.gradle.com/lato/fonts/lato-bold/lato-bold.woff2") format("woff2"),
    url("https://assets.gradle.com/lato/fonts/lato-bold/lato-bold.woff") format("woff");
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    font-family: "Lato", "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

body {
    color: #02303A;
    background-color: #ffffff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}


/* typography */
h1, h2, h3, h4, h5, h6 {
    color: #02303A;
    text-rendering: optimizeLegibility;
    margin: 0;
}

h1 {
    font-size: 1rem;
}

h2 {
    font-size: 0.9rem;
}

h3 {
    font-size: 1.125rem;
}

h4, h5, h6 {
    font-size: 0.875rem;
}

h1 code {
    font-weight: bold;
}

ul, ol, dl {
    list-style-position: outside;
    line-height: 1.6;
    padding: 0;
    margin: 0 0 0 20px;
    list-style-type: none;
}

li {
    line-height: 2;
}

a {
    color: #1DA2BD;
    text-decoration: none;
    transition: all 0.3s ease, visibility 0s;
}

a:hover {
    color: #35c1e4;
}

/* code */
code, pre {
    font-family: Inconsolata, Monaco, "Courier New", monospace;
    font-style: normal;
    font-variant-ligatures: normal;
    font-variant-caps: normal;
    font-variant-numeric: normal;
    font-variant-east-asian: normal;
    font-weight: normal;
    font-stretch: normal;
    color: #686868;
}

*:not(pre) > code {
    letter-spacing: 0;
    padding: 0.1em 0.5ex;
    text-rendering: optimizeSpeed;
    word-spacing: -0.15em;
    word-wrap: break-word;
}

pre {
    font-size: 0.75rem;
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 1.5em;
    padding: 1rem;
}

pre code {
    background-color: transparent;
    color: inherit;
    line-height: 1.8;
    font-size: 100%;
    padding: 0;
}

a code {
    color: #1BA8CB;
}

pre.code, pre.programlisting, pre.screen, pre.tt {
    background-color: #f7f7f8;
    border-radius: 4px;
    font-size: 1em;
    line-height: 1.45;
    margin-bottom: 1.25em;
    overflow-x: auto;
    padding: 1rem;
}

li em, p em {
    padding: 0 1px;
}

code em, tt em {
    text-decoration: none;
}

code + .copy-button {
    margin-inline-start: 0.2ex;
}

.java-exception {
    font-size: 0.75rem;
    padding-left: 24px;
}

.java-exception ul {
    margin: 0;
    line-height: inherit;
}

.java-exception code {
    white-space: pre;
}

.java-exception-part-toggle {
    user-select: none;
    cursor: pointer;
    border-radius: 2px;
    padding: 0.1em 0.2em;
    background: azure;
    color: #686868;
}

                </style>
    <!-- Inconsolata is used as a default monospace font in the report. -->
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inconsolata:400,700" />

    <title>Gradle Configuration Cache</title>
</head>
<body>

<div id="playground"></div>

<div class="report" id="report">
    Loading...
</div>

<script type="text/javascript">
function configurationCacheProblems() { return (
// begin-report-data
{"diagnostics":[{"locations":[{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\file_picker-10.1.9\\android\\build.gradle'","line":1},{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\file_picker-10.1.9\\android\\build.gradle'","line":1}],"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('group = <value>') instead."}]]},{"locations":[{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\file_picker-10.1.9\\android\\build.gradle'","line":2},{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\file_picker-10.1.9\\android\\build.gradle'","line":2}],"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('version = <value>') instead."}]]},{"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('compileSdk = <value>') instead."}]]},{"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('minSdk = <value>') instead."}]]},{"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('namespace = <value>') instead."}]]},{"locations":[{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\flutter_plugin_android_lifecycle-2.0.28\\android\\build.gradle'","line":1},{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\flutter_plugin_android_lifecycle-2.0.28\\android\\build.gradle'","line":1}],"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('group = <value>') instead."}]]},{"locations":[{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\flutter_plugin_android_lifecycle-2.0.28\\android\\build.gradle'","line":2},{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\flutter_plugin_android_lifecycle-2.0.28\\android\\build.gradle'","line":2}],"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('version = <value>') instead."}]]},{"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('namespace = <value>') instead."}]]},{"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('checkAllWarnings = <value>') instead."}]]},{"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('warningsAsErrors = <value>') instead."}]]},{"locations":[{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\install_plugin-2.1.0\\android\\build.gradle'","line":1},{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\install_plugin-2.1.0\\android\\build.gradle'","line":1}],"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('group = <value>') instead."}]]},{"locations":[{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\install_plugin-2.1.0\\android\\build.gradle'","line":2},{"path":"build file 'D:\\Files\\cache\\.pub\\hosted\\pub.flutter-io.cn\\install_plugin-2.1.0\\android\\build.gradle'","line":2}],"problem":[{"text":"Space-assignment syntax in Groovy DSL has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 10.0."}],"contextualLabel":"Space-assignment syntax in Groovy DSL has been deprecated.","documentationLink":"https://docs.gradle.org/8.12/userguide/upgrading_version_8.html#groovy_space_assignment_syntax","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"space-assignment-syntax-in-groovy-dsl","displayName":"Space-assignment syntax in Groovy DSL has been deprecated."}],"solutions":[[{"text":"Use assignment ('version = <value>') instead."}]]}],"problemsReport":{"totalProblemCount":12,"buildName":"android","requestedTasks":"assembleDebug","documentationLink":"https://docs.gradle.org/8.12/userguide/problems-report.html","documentationLinkCaption":"Problem report","summaries":[]}}
// end-report-data
);}
</script>
                <script type="text/javascript">
                !function(n,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports["configuration-cache-report"]=t():n["configuration-cache-report"]=t()}(this,(()=>(({70:function(){void 0===ArrayBuffer.isView&&(ArrayBuffer.isView=function(n){return null!=n&&null!=n.__proto__&&n.__proto__.__proto__===Int8Array.prototype.__proto__}),void 0===Math.imul&&(Math.imul=function(n,t){return(4294901760&n)*(65535&t)+(65535&n)*(0|t)|0}),this["configuration-cache-report"]=function(n){"use strict";var t,r,i,e,u,o,f,s,c,a,h,l,_,v,d,g,w,b,p,m,k,y,q,B,C,x,j,P,I,S,z,E,T,L,N,A,M,F,D,O,R,H,$,G,U,V,Q,Z,Y,W,K,X,J,nn,tn,rn,en,un,on,fn,sn,cn,an,hn,ln,_n,vn,dn,gn,wn,bn,pn,mn,kn,yn,qn,Bn,Cn,xn,jn,Pn,In,Sn,zn=Math.imul,En=ArrayBuffer.isView;function Tn(n,t){if(!(t>=0))throw fu(ie("Requested element count "+t+" is less than zero."));return function(n,t){if(!(t>=0))throw fu(ie("Requested element count "+t+" is less than zero."));if(0===t)return pt();if(t>=n.length)return function(n){switch(n.length){case 0:return pt();case 1:return gr(n[0]);default:return function(n){return Ar(function(n){return new qt(n,!1)}(n))}(n)}}(n);if(1===t)return gr(n[0]);var r=0,i=Nr(),e=0,u=n.length;n:for(;e<u;){var o=n[e];if(e=e+1|0,i.d(o),(r=r+1|0)===t)break n}return i}(n,Wn(n.length-t|0,0))}function Ln(n,t,r,i,e,u,o){return t=t===A?", ":t,r=r===A?"":r,i=i===A?"":i,e=e===A?-1:e,u=u===A?"...":u,o=o===A?null:o,function(n,t,r,i,e,u,o,f){r=r===A?", ":r,i=i===A?"":i,e=e===A?"":e,u=u===A?-1:u,o=o===A?"...":o,f=f===A?null:f,t.e(i);var s=0,c=0,a=n.length;n:for(;c<a;){var h=n[c];if(c=c+1|0,(s=s+1|0)>1&&t.e(r),!(u<0||s<=u))break n;Qt(t,h,f)}return u>=0&&s>u&&t.e(o),t.e(e),t}(n,bi(),t,r,i,e,u,o).toString()}function Nn(n){return n.length-1|0}function An(n,t){if(null==t){var r=0,i=n.length-1|0;if(r<=i)do{var e=r;if(r=r+1|0,null==n[e])return e}while(r<=i)}else{var u=0,o=n.length-1|0;if(u<=o)do{var f=u;if(u=u+1|0,oe(t,n[f]))return f}while(u<=o)}return-1}function Mn(n,t,r,i,e,u,o){return t=t===A?", ":t,r=r===A?"":r,i=i===A?"":i,e=e===A?-1:e,u=u===A?"...":u,o=o===A?null:o,Fn(n,bi(),t,r,i,e,u,o).toString()}function Fn(n,t,r,i,e,u,o,f){r=r===A?", ":r,i=i===A?"":i,e=e===A?"":e,u=u===A?-1:u,o=o===A?"...":o,f=f===A?null:f,t.e(i);var s=0,c=n.f();n:for(;c.g();){var a=c.h();if((s=s+1|0)>1&&t.e(r),!(u<0||s<=u))break n;Qt(t,a,f)}return u>=0&&s>u&&t.e(o),t.e(e),t}function Dn(n){if(n.i())throw mu("List is empty.");return n.j(0)}function On(n){return new Yn(n)}function Rn(n){if(Ue(n,Ti)){var t;switch(n.k()){case 0:t=pt();break;case 1:t=gr(Ue(n,Ei)?n.j(0):n.f().h());break;default:t=Hn(n)}return t}return mt(Vn(n))}function Hn(n){return Ar(n)}function $n(n){if(Ue(n,Ti)&&n.k()<=1)return Rn(n);var t=Vn(n);return function(n){var t=(n.k()/2|0)-1|0;if(t<0)return lr();var r=kt(n),i=0;if(i<=t)do{var e=i;i=i+1|0;var u=n.j(e);n.f4(e,n.j(r)),n.f4(r,u),r=r-1|0}while(e!==t)}(t),t}function Gn(n,t){if(!(t>=0))throw fu(ie("Requested element count "+t+" is less than zero."));return function(n,t){if(!(t>=0))throw fu(ie("Requested element count "+t+" is less than zero."));if(0===t)return pt();if(Ue(n,Ti)){if(t>=n.k())return Rn(n);if(1===t)return gr(function(n){if(Ue(n,Ei))return Dn(n);var t=n.f();if(!t.g())throw mu("Collection is empty.");return t.h()}(n))}var r=0,i=Nr(),e=n.f();n:for(;e.g();){var u=e.h();if(i.d(u),(r=r+1|0)===t)break n}return mt(i)}(n,Wn(n.k()-t|0,0))}function Un(n,t){if(!(t>=0))throw fu(ie("Requested element count "+t+" is less than zero."));if(0===t)return pt();var r=n.k();if(t>=r)return Rn(n);if(1===t)return gr(Qn(n));var i=Nr();if(Ue(n,li)){var e=r-t|0;if(e<r)do{var u=e;e=e+1|0,i.d(n.j(u))}while(e<r)}else for(var o=n.l(r-t|0);o.g();){var f=o.h();i.d(f)}return i}function Vn(n){return Ue(n,Ti)?Hn(n):Zn(n,Lr())}function Qn(n){if(n.i())throw mu("List is empty.");return n.j(kt(n))}function Zn(n,t){for(var r=n.f();r.g();){var i=r.h();t.d(i)}return t}function Yn(n){this.n_1=n}function Wn(n,t){return n<t?t:n}function Kn(n,t){return n>t?t:n}function Xn(n,t){return Ut().q(n,t,-1)}function Jn(n,t){return new Et(n,t)}function nt(n){var t=n.f();if(!t.g())return pt();var r=t.h();if(!t.g())return gr(r);var i=Lr();for(i.d(r);t.g();)i.d(t.h());return i}function tt(n){this.r_1=n}function rt(n,t){this.s_1=n,this.t_1=t}function it(){}function et(n){this.x_1=n,this.w_1=0}function ut(n,t){this.a1_1=n,et.call(this,n),ft().b1(t,this.a1_1.k()),this.w_1=t}function ot(){t=this}function ft(){return null==t&&new ot,t}function st(){ft(),it.call(this)}function ct(n){this.h1_1=n}function at(n,t){return t===n?"(this Map)":Oi(t)}function ht(n,t){var r;n:{for(var i=n.o().f();i.g();){var e=i.h();if(oe(e.j1(),t)){r=e;break n}}r=null}return r}function lt(){r=this}function _t(){return null==r&&new lt,r}function vt(n){this.q1_1=n,it.call(this)}function dt(){_t(),this.n1_1=null,this.o1_1=null}function gt(){i=this}function wt(){return null==i&&new gt,i}function bt(n){return n.length>0?nu(n):pt()}function pt(){return null==e&&new yt,e}function mt(n){switch(n.k()){case 0:return pt();case 1:return gr(n.j(0));default:return n}}function kt(n){return n.k()-1|0}function yt(){e=this,this.z1_1=new de(-1478467534,-1720727600)}function qt(n,t){this.b2_1=n,this.c2_1=t}function Bt(){u=this}function Ct(){return null==u&&new Bt,u}function xt(n,t){return Ue(n,Ti)?n.k():t}function jt(n,t){if(Ue(t,Ti))return n.m(t);for(var r=!1,i=t.f();i.g();){var e=i.h();n.d(e)&&(r=!0)}return r}function Pt(){}function It(n,t){this.h2_1=n,this.g2_1=n.i2_1.l(function(n,t){if(!(0<=t&&t<=n.k()))throw cu("Position index "+t+" must be in range ["+Oe(0,n.k())+"].");return n.k()-t|0}(n,t))}function St(n){st.call(this),this.i2_1=n}function zt(n){this.k2_1=n,this.j2_1=n.l2_1.f()}function Et(n,t){this.l2_1=n,this.m2_1=t}function Tt(n){for(;n.n2_1.g();){var t=n.n2_1.h();if(n.q2_1.t2_1(t)===n.q2_1.s2_1)return n.p2_1=t,n.o2_1=1,lr()}n.o2_1=0}function Lt(n){this.q2_1=n,this.n2_1=n.r2_1.f(),this.o2_1=-1,this.p2_1=null}function Nt(n,t,r){t=t===A||t,this.r2_1=n,this.s2_1=t,this.t2_1=r}function At(){return null==o&&new Mt,o}function Mt(){o=this,this.u2_1=new de(1993859828,793161749)}function Ft(n,t,r){return Dt(Dt(n,r)-Dt(t,r)|0,r)}function Dt(n,t){var r=n%t|0;return r>=0?r:r+t|0}function Ot(){f=this,this.p_1=new Ht(1,0)}function Rt(){return null==f&&new Ot,f}function Ht(n,t){Rt(),Vt.call(this,n,t,1)}function $t(n,t,r){Pt.call(this),this.d3_1=r,this.e3_1=t,this.f3_1=this.d3_1>0?n<=t:n>=t,this.g3_1=this.f3_1?n:this.e3_1}function Gt(){s=this}function Ut(){return null==s&&new Gt,s}function Vt(n,t,r){if(Ut(),0===r)throw fu("Step must be non-zero.");if(r===vr().MIN_VALUE)throw fu("Step must be greater than Int.MIN_VALUE to avoid overflow on negation.");this.z2_1=n,this.a3_1=function(n,t,r){var i;if(r>0)i=n>=t?t:t-Ft(t,n,r)|0;else{if(!(r<0))throw fu("Step is zero.");i=n<=t?t:t+Ft(n,t,0|-r)|0}return i}(n,t,r),this.b3_1=r}function Qt(n,t,r){null!=r?n.e(r(t)):null==t||Ze(t)?n.e(t):t instanceof zi?n.i3(t.h3_1):n.e(Oi(t))}function Zt(n,t,r){if(n===t)return!0;if(!(r=r!==A&&r))return!1;var i=mi(n),e=mi(t);return i===e||oe(new zi(Zi(Pi(i).toLowerCase(),0)),new zi(Zi(Pi(e).toLowerCase(),0)))}function Yt(n){return Wi(n)-1|0}function Wt(n,t,r,i){return r=r===A?0:r,(i=i!==A&&i)||"string"!=typeof n?Kt(n,t,r,Wi(n),i):n.indexOf(t,r)}function Kt(n,t,r,i,e,u){var o=(u=u!==A&&u)?Xn(Kn(r,Yt(n)),Wn(i,0)):Oe(Wn(r,0),Kn(i,Wi(n)));if("string"==typeof n&&"string"==typeof t){var f=o.z2_1,s=o.a3_1,c=o.b3_1;if(c>0&&f<=s||c<0&&s<=f)do{var a=f;if(f=f+c|0,xi(t,0,n,a,Wi(t),e))return a}while(a!==s)}else{var h=o.z2_1,l=o.a3_1,_=o.b3_1;if(_>0&&h<=l||_<0&&l<=h)do{var v=h;if(h=h+_|0,tr(t,0,n,v,Wi(t),e))return v}while(v!==l)}return-1}function Xt(n){var t=0,r=Wi(n)-1|0,i=!1;n:for(;t<=r;){var e=ki(Zi(n,i?r:t));if(i){if(!e)break n;r=r-1|0}else e?t=t+1|0:i=!0}return Ki(n,t,r+1|0)}function Jt(n,t){return ie(Ki(n,t.y2(),t.c3()+1|0))}function nr(n,t,r,i,e){r=r===A?0:r,i=i!==A&&i,rr(e=e===A?0:e);var u,o,f=nu(t);return new ur(n,r,e,(u=f,o=i,function(n,t){var r=function(n,t,r,i){if(!i&&1===t.k()){var e=function(n){if(Ue(n,Ei))return function(n){var t;switch(n.k()){case 0:throw mu("List is empty.");case 1:t=n.j(0);break;default:throw fu("List has more than one element.")}return t}(n);var t=n.f();if(!t.g())throw mu("Collection is empty.");var r=t.h();if(t.g())throw fu("Collection has more than one element.");return r}(t),u=Wt(n,e,r);return u<0?null:fr(u,e)}var o=Oe(Wn(r,0),Wi(n));if("string"==typeof n){var f=o.z2_1,s=o.a3_1,c=o.b3_1;if(c>0&&f<=s||c<0&&s<=f)do{var a,h=f;f=f+c|0;n:{for(var l=t.f();l.g();){var _=l.h();if(xi(_,0,n,h,_.length,i)){a=_;break n}}a=null}if(null!=a)return fr(h,a)}while(h!==s)}else{var v=o.z2_1,d=o.a3_1,g=o.b3_1;if(g>0&&v<=d||g<0&&d<=v)do{var w,b=v;v=v+g|0;n:{for(var p=t.f();p.g();){var m=p.h();if(tr(m,0,n,b,m.length,i)){w=m;break n}}w=null}if(null!=w)return fr(b,w)}while(b!==d)}return null}(n,u,t,o);return null==r?null:fr(r.t3_1,r.u3_1.length)}))}function tr(n,t,r,i,e,u){if(i<0||t<0||t>(Wi(n)-e|0)||i>(Wi(r)-e|0))return!1;var o=0;if(o<e)do{var f=o;if(o=o+1|0,!Zt(Zi(n,t+f|0),Zi(r,i+f|0),u))return!1}while(o<e);return!0}function rr(n){if(!(n>=0))throw fu(ie("Limit must be non-negative, but was "+n))}function ir(n){if(n.l3_1<0)n.j3_1=0,n.m3_1=null;else{var t;if(n.o3_1.r3_1>0?(n.n3_1=n.n3_1+1|0,t=n.n3_1>=n.o3_1.r3_1):t=!1,t||n.l3_1>Wi(n.o3_1.p3_1))n.m3_1=Oe(n.k3_1,Yt(n.o3_1.p3_1)),n.l3_1=-1;else{var r=n.o3_1.s3_1(n.o3_1.p3_1,n.l3_1);if(null==r)n.m3_1=Oe(n.k3_1,Yt(n.o3_1.p3_1)),n.l3_1=-1;else{var i=r.v3(),e=r.w3();n.m3_1=function(n,t){return t<=vr().MIN_VALUE?Rt().p_1:Oe(n,t-1|0)}(n.k3_1,i),n.k3_1=i+e|0,n.l3_1=n.k3_1+(0===e?1:0)|0}}n.j3_1=1}}function er(n){this.o3_1=n,this.j3_1=-1,this.k3_1=function(n,t,r){if(0>r)throw fu("Cannot coerce value to an empty range: maximum "+r+" is less than minimum 0.");return n<0?0:n>r?r:n}(n.q3_1,0,Wi(n.p3_1)),this.l3_1=this.k3_1,this.m3_1=null,this.n3_1=0}function ur(n,t,r,i){this.p3_1=n,this.q3_1=t,this.r3_1=r,this.s3_1=i}function or(n,t){this.t3_1=n,this.u3_1=t}function fr(n,t){return new or(n,t)}function sr(){}function cr(){}function ar(){}function hr(){c=this}function lr(){return null==c&&new hr,c}function _r(){a=this,this.MIN_VALUE=-2147483648,this.MAX_VALUE=2147483647,this.SIZE_BYTES=4,this.SIZE_BITS=32}function vr(){return null==a&&new _r,a}function dr(n){for(var t=[],r=n.f();r.g();)t.push(r.h());return t}function gr(n){return 0===(t=[n]).length?Lr():Ar(new qt(t,!0));var t}function wr(n){return n<0&&function(){throw yu("Index overflow has happened.")}(),n}function br(n){return void 0!==n.toArray?n.toArray():dr(n)}function pr(n){return function(n,t){for(var r=0,i=n.length;r<i;){var e=n[r];r=r+1|0,t.d(e)}return t}(t=[n],(r=t.length,i=ce(se(Zr)),function(n,t,r){zr.call(r),Zr.call(r),r.y5_1=function(n){return Ur(n,0,ce(se(Vr)))}(n)}(r,0,i),i));var t,r,i}function mr(){it.call(this)}function kr(n){this.j4_1=n,this.h4_1=0,this.i4_1=-1}function yr(n,t){this.n4_1=n,kr.call(this,n),ft().b1(t,this.n4_1.k()),this.h4_1=t}function qr(){mr.call(this),this.o4_1=0}function Br(n){this.r4_1=n}function Cr(n){this.s4_1=n}function xr(n,t){this.t4_1=n,this.u4_1=t}function jr(){zr.call(this)}function Pr(n){this.x4_1=n,zr.call(this)}function Ir(n){this.e5_1=n,mr.call(this)}function Sr(){dt.call(this),this.c5_1=null,this.d5_1=null}function zr(){mr.call(this)}function Er(){h=this;var n=Nr();n.c_1=!0,this.i5_1=n}function Tr(){return null==h&&new Er,h}function Lr(){return n=ce(se(Fr)),t=[],Fr.call(n,t),n;var n,t}function Nr(n){return t=ce(se(Fr)),r=[],Fr.call(t,r),t;var t,r}function Ar(n){return function(n,t){var r;return r=br(n),Fr.call(t,r),t}(n,ce(se(Fr)))}function Mr(n,t){return ft().e1(t,n.k()),t}function Fr(n){Tr(),qr.call(this),this.b_1=n,this.c_1=!1}function Dr(n,t,r,i,e){if(r===i)return n;var u=(r+i|0)/2|0,o=Dr(n,t,r,u,e),f=Dr(n,t,u+1|0,i,e),s=o===t?n:t,c=r,a=u+1|0,h=r;if(h<=i)do{var l=h;if(h=h+1|0,c<=u&&a<=i){var _=o[c],v=f[a];e.compare(_,v)<=0?(s[l]=_,c=c+1|0):(s[l]=v,a=a+1|0)}else c<=u?(s[l]=o[c],c=c+1|0):(s[l]=f[a],a=a+1|0)}while(l!==i);return s}function Or(n,t){return(3&n)-(3&t)|0}function Rr(){_=this}function Hr(n){this.n5_1=n,jr.call(this)}function $r(n){return function(n,t){Sr.call(t),Vr.call(t),t.t5_1=n,t.u5_1=n.w5()}(new Jr((null==_&&new Rr,_)),n),n}function Gr(){return $r(ce(se(Vr)))}function Ur(n,t,r){if($r(r),!(n>=0))throw fu(ie("Negative initial capacity: "+n));if(!(t>=0))throw fu(ie("Non-positive load factor: "+t));return r}function Vr(){this.v5_1=null}function Qr(n,t){return zr.call(t),Zr.call(t),t.y5_1=n,t}function Zr(){}function Yr(n,t){var r=Kr(n,n.h6_1.m5(t));if(null==r)return null;var i=r;if(null!=i&&Ve(i))return Wr(i,n,t);var e=i;return n.h6_1.l5(e.j1(),t)?e:null}function Wr(n,t,r){var i;n:{for(var e=0,u=n.length;e<u;){var o=n[e];if(e=e+1|0,t.h6_1.l5(o.j1(),r)){i=o;break n}}i=null}return i}function Kr(n,t){var r=n.i6_1[t];return void 0===r?null:r}function Xr(n){this.g6_1=n,this.z5_1=-1,this.a6_1=Object.keys(n.i6_1),this.b6_1=-1,this.c6_1=null,this.d6_1=!1,this.e6_1=-1,this.f6_1=null}function Jr(n){this.h6_1=n,this.i6_1=this.k6(),this.j6_1=0}function ni(){}function ti(n){this.n6_1=n,this.l6_1=null,this.m6_1=null,this.m6_1=this.n6_1.y6_1.v6_1}function ri(){v=this;var n,t=(fi(0,0,n=ce(se(si))),n);t.x6_1=!0,this.e7_1=t}function ii(){return null==v&&new ri,v}function ei(n,t,r){this.d7_1=n,xr.call(this,t,r),this.b7_1=null,this.c7_1=null}function ui(n){this.y6_1=n,jr.call(this)}function oi(){return $r(n=ce(se(si))),si.call(n),n.w6_1=Gr(),n;var n}function fi(n,t,r){return Ur(n,t,r),si.call(r),r.w6_1=Gr(),r}function si(){ii(),this.v6_1=null,this.x6_1=!1}function ci(){d=this;var n=ai(0),t=n.y5_1;(t instanceof si?t:_e()).j5(),this.f7_1=n}function ai(n){return function(n,t){return function(n,t,r){Qr(function(n,t){return fi(n,t,ce(se(si)))}(n,t),r),hi.call(r)}(n,0,t),t}(n,ce(se(hi)))}function hi(){null==d&&new ci}function li(){}function _i(){}function vi(n){_i.call(this),this.k7_1=n}function di(){gi.call(this)}function gi(){_i.call(this),this.m7_1=""}function wi(){if(!w){w=!0;var n="undefined"!=typeof process&&process.versions&&!!process.versions.node;g=n?new vi(process.stdout):new di}}function bi(){return n=ce(se(pi)),pi.call(n,""),n;var n}function pi(n){this.o7_1=void 0!==n?n:""}function mi(n){var t=Pi(n).toUpperCase();return t.length>1?n:Zi(t,0)}function ki(n){return function(n){return 9<=n&&n<=13||28<=n&&n<=32||160===n||n>4096&&(5760===n||8192<=n&&n<=8202||8232===n||8233===n||8239===n||8287===n||12288===n)}(n)}function yi(){b=this,this.q7_1=new RegExp("[\\\\^$*+?.()|[\\]{}]","g"),this.r7_1=new RegExp("[\\\\$]","g"),this.s7_1=new RegExp("\\$","g")}function qi(){return null==b&&new yi,b}function Bi(n,t){qi(),this.v7_1=n,this.w7_1=function(n){if(Ue(n,Ti)){var t;switch(n.k()){case 0:t=At();break;case 1:t=pr(Ue(n,Ei)?n.j(0):n.f().h());break;default:t=Zn(n,ai(n.k()))}return t}return function(n){switch(n.k()){case 0:return At();case 1:return pr(n.f().h());default:return n}}(Zn(n,(r=ce(se(hi)),Qr(oi(),r),hi.call(r),r)));var r}(t),this.x7_1=new RegExp(n,Mn(t,"","gu",A,A,A,Ci)),this.y7_1=null,this.z7_1=null}function Ci(n){return n.d8_1}function xi(n,t,r,i,e,u){return tr(n,t,r,i,e,u=u!==A&&u)}function ji(n,t){return n-t|0}function Pi(n){return String.fromCharCode(n)}function Ii(){p=this,this.e8_1=0,this.f8_1=65535,this.g8_1=55296,this.h8_1=56319,this.i8_1=56320,this.j8_1=57343,this.k8_1=55296,this.l8_1=57343,this.m8_1=2,this.n8_1=16}function Si(){return null==p&&new Ii,p}function zi(n){Si(),this.h3_1=n}function Ei(){}function Ti(){}function Li(){}function Ni(){}function Ai(){}function Mi(){}function Fi(){m=this}function Di(n,t){null==m&&new Fi,this.p8_1=n,this.q8_1=t}function Oi(n){var t=null==n?null:ie(n);return null==t?"null":t}function Ri(n){return new Hi(n)}function Hi(n){this.t8_1=n,this.s8_1=0}function $i(){return Qi(),k}function Gi(){return Qi(),y}function Ui(){return Qi(),q}function Vi(){return Qi(),B}function Qi(){x||(x=!0,k=new ArrayBuffer(8),y=new Float64Array($i()),new Float32Array($i()),q=new Int32Array($i()),Gi()[0]=-1,B=0!==Ui()[0]?1:0,C=1-Vi()|0)}function Zi(n,t){var r;if(Yi(n)){var i,e=n.charCodeAt(t);if(Si(),e<0?i=!0:(Si(),i=e>65535),i)throw fu("Invalid Char code: "+e);r=De(e)}else r=n.y3(t);return r}function Yi(n){return"string"==typeof n}function Wi(n){return Yi(n)?n.length:n.x3()}function Ki(n,t,r){return Yi(n)?n.substring(t,r):n.z3(t,r)}function Xi(n){return ie(n)}function Ji(n,t){var r;switch(typeof n){case"number":r="number"==typeof t?ne(n,t):t instanceof de?ne(n,t.w8()):te(n,t);break;case"string":case"boolean":r=te(n,t);break;default:r=function(n,t){return n.a4(t)}(n,t)}return r}function ne(n,t){var r;if(n<t)r=-1;else if(n>t)r=1;else if(n===t){var i;if(0!==n)i=0;else{var e=1/n;i=e===1/t?0:e<0?-1:1}r=i}else r=n!=n?t!=t?0:1:-1;return r}function te(n,t){return n<t?-1:n>t?1:0}function re(n){if(!("kotlinHashCodeValue$"in n)){var t=4294967296*Math.random()|0,r=new Object;r.value=t,r.enumerable=!1,Object.defineProperty(n,"kotlinHashCodeValue$",r)}return n.kotlinHashCodeValue$}function ie(n){return null==n?"null":function(n){return!!$e(n)||En(n)}(n)?"[...]":n.toString()}function ee(n){if(null==n)return 0;var t;switch(typeof n){case"object":t="function"==typeof n.hashCode?n.hashCode():re(n);break;case"function":t=re(n);break;case"number":t=function(n){return Qi(),(0|n)===n?Fe(n):(Gi()[0]=n,zn(Ui()[(Qi(),C)],31)+Ui()[Vi()]|0)}(n);break;case"boolean":t=n?1:0;break;default:t=ue(String(n))}return t}function ue(n){var t=0,r=0,i=n.length-1|0;if(r<=i)do{var e=r;r=r+1|0;var u=n.charCodeAt(e);t=zn(t,31)+u|0}while(e!==i);return t}function oe(n,t){return null==n?null==t:null!=t&&("object"==typeof n&&"function"==typeof n.equals?n.equals(t):n!=n?t!=t:"number"==typeof n&&"number"==typeof t?n===t&&(0!==n||1/n==1/t):n===t)}function fe(n,t){null!=Error.captureStackTrace?Error.captureStackTrace(n,t):n.stack=(new Error).stack}function se(n){return n.prototype}function ce(n){return Object.create(n)}function ae(n,t,r){Error.call(n),function(n,t,r){var i=Xe(Object.getPrototypeOf(n));if(!(1&i)){var e;if(null==t){var u;if(null!==t){var o=null==r?null:r.toString();u=null==o?A:o}else u=A;e=u}else e=t;n.message=e}2&i||(n.cause=r),n.name=Object.getPrototypeOf(n).constructor.name}(n,t,r)}function he(n){var t;return null==n?function(){throw ju()}():t=n,t}function le(){throw Iu()}function _e(){throw zu()}function ve(){j=this,this.x8_1=new de(0,-2147483648),this.y8_1=new de(-1,2147483647),this.z8_1=8,this.a9_1=64}function de(n,t){null==j&&new ve,ar.call(this),this.u8_1=n,this.v8_1=t}function ge(){return Me(),P}function we(){return Me(),I}function be(){return Me(),S}function pe(){return Me(),E}function me(){return Me(),T}function ke(n,t){if(Me(),xe(n,t))return 0;var r=Ie(n),i=Ie(t);return r&&!i?-1:!r&&i?1:Ie(qe(n,t))?-1:1}function ye(n,t){Me();var r=n.v8_1>>>16|0,i=65535&n.v8_1,e=n.u8_1>>>16|0,u=65535&n.u8_1,o=t.v8_1>>>16|0,f=65535&t.v8_1,s=t.u8_1>>>16|0,c=0,a=0,h=0,l=0;return c=(c=c+((a=(a=a+((h=(h=h+((l=l+(u+(65535&t.u8_1)|0)|0)>>>16|0)|0)+(e+s|0)|0)>>>16|0)|0)+(i+f|0)|0)>>>16|0)|0)+(r+o|0)|0,new de((h&=65535)<<16|(l&=65535),(c&=65535)<<16|(a&=65535))}function qe(n,t){return Me(),ye(n,t.e9())}function Be(n,t){if(Me(),Se(n))return ge();if(Se(t))return ge();if(xe(n,pe()))return ze(t)?pe():ge();if(xe(t,pe()))return ze(n)?pe():ge();if(Ie(n))return Ie(t)?Be(Ee(n),Ee(t)):Ee(Be(Ee(n),t));if(Ie(t))return Ee(Be(n,Ee(t)));if(Te(n,me())&&Te(t,me()))return Le(Ce(n)*Ce(t));var r=n.v8_1>>>16|0,i=65535&n.v8_1,e=n.u8_1>>>16|0,u=65535&n.u8_1,o=t.v8_1>>>16|0,f=65535&t.v8_1,s=t.u8_1>>>16|0,c=65535&t.u8_1,a=0,h=0,l=0,_=0;return l=l+((_=_+zn(u,c)|0)>>>16|0)|0,_&=65535,h=(h=h+((l=l+zn(e,c)|0)>>>16|0)|0)+((l=(l&=65535)+zn(u,s)|0)>>>16|0)|0,l&=65535,a=(a=(a=a+((h=h+zn(i,c)|0)>>>16|0)|0)+((h=(h&=65535)+zn(e,s)|0)>>>16|0)|0)+((h=(h&=65535)+zn(u,f)|0)>>>16|0)|0,h&=65535,a=a+(((zn(r,c)+zn(i,s)|0)+zn(e,f)|0)+zn(u,o)|0)|0,new de(l<<16|_,(a&=65535)<<16|h)}function Ce(n){return Me(),4294967296*n.v8_1+function(n){return Me(),n.u8_1>=0?n.u8_1:4294967296+n.u8_1}(n)}function xe(n,t){return Me(),n.v8_1===t.v8_1&&n.u8_1===t.u8_1}function je(n,t){if(Me(),t<2||36<t)throw vu("radix out of range: "+t);if(Se(n))return"0";if(Ie(n)){if(xe(n,pe())){var r=Pe(t),i=n.d9(r),e=qe(Be(i,r),n).g9();return je(i,t)+e.toString(t)}return"-"+je(Ee(n),t)}for(var u=2===t?31:t<=10?9:t<=21?7:t<=35?6:5,o=Le(Math.pow(t,u)),f=n,s="";;){var c=f.d9(o),a=qe(f,Be(c,o)).g9().toString(t);if(Se(f=c))return a+s;for(;a.length<u;)a="0"+a;s=a+s}}function Pe(n){return Me(),new de(n,n<0?-1:0)}function Ie(n){return Me(),n.v8_1<0}function Se(n){return Me(),0===n.v8_1&&0===n.u8_1}function ze(n){return Me(),!(1&~n.u8_1)}function Ee(n){return Me(),n.e9()}function Te(n,t){return Me(),ke(n,t)<0}function Le(n){if(Me(),(t=n)!=t)return ge();if(n<=-0x8000000000000000)return pe();if(n+1>=0x8000000000000000)return Me(),z;if(n<0)return Ee(Le(-n));var t,r=4294967296;return new de(n%r|0,n/r|0)}function Ne(n,t){return Me(),ke(n,t)>0}function Ae(n,t){return Me(),ke(n,t)>=0}function Me(){L||(L=!0,P=Pe(0),I=Pe(1),S=Pe(-1),z=new de(-1,2147483647),E=new de(0,-2147483648),T=Pe(16777216))}function Fe(n){return n instanceof de?n.g9():function(n){return n>2147483647?2147483647:n<-2147483648?-2147483648:0|n}(n)}function De(n){var t;return t=function(n){return n<<16>>16}(Fe(n)),function(n){return 65535&n}(t)}function Oe(n,t){return new Ht(n,t)}function Re(n,t,r,i){return He("class",n,t,r,i,null)}function He(n,t,r,i,e,u){return{kind:n,simpleName:t,associatedObjectKey:r,associatedObjects:i,suspendArity:e,$kClass$:A,iid:u}}function $e(n){return Array.isArray(n)}function Ge(n,t,r,i,e,u,o,f){null!=i&&(n.prototype=Object.create(i.prototype),n.prototype.constructor=n);var s=r(t,u,o,null==f?[]:f);n.$metadata$=s,null!=e&&((null!=s.iid?n:n.prototype).$imask$=function(n){for(var t=1,r=[],i=0,e=n.length;i<e;){var u=n[i];i=i+1|0;var o=t,f=u.prototype.$imask$,s=null==f?u.$imask$:f;null!=s&&(r.push(s),o=s.length);var c=u.$metadata$.iid,a=null==c?null:(l=void 0,v=1<<(31&(h=c)),(l=new Int32Array(1+(h>>5)|0))[_=h>>5]=l[_]|v,l);null!=a&&(r.push(a),o=Math.max(o,a.length)),o>t&&(t=o)}var h,l,_,v;return function(n,t){for(var r=0,i=new Int32Array(n);r<n;){for(var e=r,u=0,o=0,f=t.length;o<f;){var s=t[o];o=o+1|0,e<s.length&&(u|=s[e])}i[e]=u,r=r+1|0}return i}(t,r)}(e))}function Ue(n,t){return function(n,t){var r=n.$imask$;return null!=r&&function(n,t){var r=t>>5;if(r>n.length)return!1;var i=1<<(31&t);return!!(n[r]&i)}(r,t)}(n,t.$metadata$.iid)}function Ve(n){return!!$e(n)&&!n.$type$}function Qe(n){var t;switch(typeof n){case"string":case"number":case"boolean":case"function":t=!0;break;default:t=n instanceof Object}return t}function Ze(n){return"string"==typeof n||Ue(n,sr)}function Ye(n,t,r,i){return He("interface",n,t,r,i,(null==N&&(N=0),N=We()+1|0,We()))}function We(){if(null!=N)return N;!function(){throw Tu("lateinit property iid has not been initialized")}()}function Ke(n,t,r,i){return He("object",n,t,r,i,null)}function Xe(n){var t=n.constructor,r=null==t?null:t.$metadata$,i=null==r?null:r.errorInfo;if(null!=i)return i;var e,u=0;if(Je(n,"message")&&(u|=1),Je(n,"cause")&&(u|=2),3!==u){var o=(e=n,Object.getPrototypeOf(e));o!=Error.prototype&&(u|=Xe(o))}return null!=r&&(r.errorInfo=u),u}function Je(n,t){return n.hasOwnProperty(t)}function nu(n){return new Fr(n)}function tu(n,t,r){for(var i=new Int32Array(r),e=0,u=0,o=0,f=0,s=n.length;f<s;){var c=Zi(n,f);f=f+1|0;var a=t[c];if(u|=(31&a)<<o,a<32){var h=e;e=h+1|0,i[h]=u,u=0,o=0}else o=o+5|0}return i}function ru(n,t){for(var r=0,i=n.length-1|0,e=-1,u=0;r<=i;)if(t>(u=n[e=(r+i|0)/2|0]))r=e+1|0;else{if(t===u)return e;i=e-1|0}return e-(t<u?1:0)|0}function iu(){M=this;var n="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",t=new Int32Array(128),r=0,i=Wi(n)-1|0;if(r<=i)do{var e=r;r=r+1|0,t[Zi(n,e)]=e}while(r<=i);var u=tu("hCgBpCQGYHZH5BRpBPPPPPPRMP5BPPlCPP6BkEPPPPcPXPzBvBrB3BOiDoBHwD+E3DauCnFmBmB2D6E1BlBTiBmBlBP5BhBiBrBvBjBqBnBPRtBiCmCtBlB0BmB5BiB7BmBgEmChBZgCoEoGVpBSfRhBPqKQ2BwBYoFgB4CJuTiEvBuCuDrF5DgEgFlJ1DgFmBQtBsBRGsB+BPiBlD1EIjDPRPPPQPPPPPGQSQS/DxENVNU+B9zCwBwBPPCkDPNnBPqDYY1R8B7FkFgTgwGgwUwmBgKwBuBScmEP/BPPPPPPrBP8B7F1B/ErBqC6B7BiBmBfQsBUwCw/KwqIwLwETPcPjQgJxFgBlBsD",t,222),o=new Int32Array(u.length),f=0,s=u.length-1|0;if(f<=s)do{var c=f;f=f+1|0,o[c]=0===c?u[c]:o[c-1|0]+u[c]|0}while(f<=s);this.h9_1=o,this.i9_1=tu("aaMBXHYH5BRpBPPPPPPRMP5BPPlCPPzBDOOPPcPXPzBvBjB3BOhDmBBpB7DoDYxB+EiBP1DoExBkBQhBekBPmBgBhBctBiBMWOOXhCsBpBkBUV3Ba4BkB0DlCgBXgBtD4FSdBfPhBPpKP0BvBXjEQ2CGsT8DhBtCqDpFvD1D3E0IrD2EkBJrBDOBsB+BPiBlB1EIjDPPPPPPPPPPPGPPMNLsBNPNPKCvBvBPPCkDPBmBPhDXXgD4B6FzEgDguG9vUtkB9JcuBSckEP/BPPPPPPBPf4FrBjEhBpC3B5BKaWPrBOwCk/KsCuLqDHPbPxPsFtEaaqDL",t,222),this.j9_1=tu("GFjgggUHGGFFZZZmzpz5qB6s6020B60ptltB6smt2sB60mz22B1+vv+8BZZ5s2850BW5q1ymtB506smzBF3q1q1qB1q1q1+Bgii4wDTm74g3KiggxqM60q1q1Bq1o1q1BF1qlrqrBZ2q5wprBGFZWWZGHFsjiooLowgmOowjkwCkgoiIk7ligGogiioBkwkiYkzj2oNoi+sbkwj04DghhkQ8wgiYkgoioDsgnkwC4gikQ//v+85BkwvoIsgoyI4yguI0whiwEowri4CoghsJowgqYowgm4DkwgsY/nwnzPowhmYkg6wI8yggZswikwHgxgmIoxgqYkwgk4DkxgmIkgoioBsgssoBgzgyI8g9gL8g9kI0wgwJoxgkoC0wgioFkw/wI0w53iF4gioYowjmgBHGq1qkgwBF1q1q8qBHwghuIwghyKk0goQkwgoQk3goQHGFHkyg0pBgxj6IoinkxDswno7Ikwhz9Bo0gioB8z48Rwli0xN0mpjoX8w78pDwltoqKHFGGwwgsIHFH3q1q16BFHWFZ1q10q1B2qlwq1B1q10q1B2q1yq1B6q1gq1Biq1qhxBir1qp1Bqt1q1qB1g1q1+B//3q16B///q1qBH/qlqq9Bholqq9B1i00a1q10qD1op1HkwmigEigiy6Cptogq1Bixo1kDq7/j00B2qgoBWGFm1lz50B6s5q1+BGWhggzhwBFFhgk4//Bo2jigE8wguI8wguI8wgugUog1qoB4qjmIwwi2KgkYHHH4lBgiFWkgIWoghssMmz5smrBZ3q1y50B5sm7gzBtz1smzB5smz50BqzqtmzB5sgzqzBF2/9//5BowgoIwmnkzPkwgk4C8ys65BkgoqI0wgy6FghquZo2giY0ghiIsgh24B4ghsQ8QF/v1q1OFs0O8iCHHF1qggz/B8wg6Iznv+//B08QgohsjK0QGFk7hsQ4gB",t,222)}function eu(){return null==M&&new iu,M}function uu(){F=this,this.k9_1=new Int32Array([170,186,688,704,736,837,890,7468,7544,7579,8305,8319,8336,8560,9424,11388,42652,42864,43e3,43868]),this.l9_1=new Int32Array([1,1,9,2,5,1,1,63,1,37,1,1,13,16,26,2,2,1,2,4])}function ou(){return null==F&&new uu,F}function fu(n){var t=function(n,t){return wu(n,t),su.call(t),t}(n,ce(se(su)));return fe(t,fu),t}function su(){fe(this,su)}function cu(n){var t=function(n,t){return wu(n,t),au.call(t),t}(n,ce(se(au)));return fe(t,cu),t}function au(){fe(this,au)}function hu(n){var t=function(n,t){return wu(n,t),lu.call(t),t}(n,ce(se(lu)));return fe(t,hu),t}function lu(){fe(this,lu)}function _u(n,t){return ae(t,n),du.call(t),t}function vu(n){var t=_u(n,ce(se(du)));return fe(t,vu),t}function du(){fe(this,du)}function gu(n){return function(n){ae(n),du.call(n)}(n),bu.call(n),n}function wu(n,t){return _u(n,t),bu.call(t),t}function bu(){fe(this,bu)}function pu(){var n,t=(gu(n=ce(se(ku))),ku.call(n),n);return fe(t,pu),t}function mu(n){var t=function(n,t){return wu(n,t),ku.call(t),t}(n,ce(se(ku)));return fe(t,mu),t}function ku(){fe(this,ku)}function yu(n){var t=function(n,t){return wu(n,t),qu.call(t),t}(n,ce(se(qu)));return fe(t,yu),t}function qu(){fe(this,qu)}function Bu(){var n,t=(gu(n=ce(se(xu))),xu.call(n),n);return fe(t,Bu),t}function Cu(n){var t=function(n,t){return wu(n,t),xu.call(t),t}(n,ce(se(xu)));return fe(t,Cu),t}function xu(){fe(this,xu)}function ju(){var n,t=(gu(n=ce(se(Pu))),Pu.call(n),n);return fe(t,ju),t}function Pu(){fe(this,Pu)}function Iu(){var n,t=(gu(n=ce(se(Su))),Su.call(n),n);return fe(t,Iu),t}function Su(){fe(this,Su)}function zu(){var n,t=(gu(n=ce(se(Eu))),Eu.call(n),n);return fe(t,zu),t}function Eu(){fe(this,Eu)}function Tu(n){var t=function(n,t){return wu(n,t),Lu.call(t),t}(n,ce(se(Lu)));return fe(t,Tu),t}function Lu(){fe(this,Lu)}function Nu(n,t){var r,i=n.className;return(r="(^|.*\\s+)"+t+"($|\\s+.*)",function(n,t){return Bi.call(t,n,At()),t}(r,ce(se(Bi)))).a8(i)}function Au(n,t){this.o9_1=n,this.p9_1=t}function Mu(n){this.q9_1=n}function Fu(n,t,r){var i,e=Ff(),u=Wu(),o=Mf().ga(t),f=Wu();if(0===Wi(r))i=Lf();else{var s=n.ia_1,c=null==s?null:new Mu(s).v9(r,"Copy reference to the clipboard");i=null==c?Lf():c}return e.ja([u,o,f,i])}function Du(n){n=n===A?null:n,this.ia_1=n}function Ou(n,t,r){Yu.call(this),this.ma_1=n,this.na_1=t,this.oa_1=r}function Ru(n,t){this.ra_1=n,this.sa_1=t}function Hu(n,t){Yu.call(this),this.va_1=n,this.wa_1=t}function $u(n,t){Yu.call(this),this.xa_1=n,this.ya_1=t}function Gu(n){Yu.call(this),this.za_1=n}function Uu(n){Yu.call(this),this.ab_1=n}function Vu(n){Yu.call(this),this.bb_1=n}function Qu(n,t){Yu.call(this),this.cb_1=n,this.db_1=t}function Zu(n){Yu.call(this),this.eb_1=n}function Yu(){}function Wu(){return ro(),D}function Ku(){return ro(),O}function Xu(){return ro(),R}function Ju(){return ro(),H}function no(n){return ro(),Ff().fb(Jf(to),n)}function to(n){return ro(),n.gb(["invisible-text","text-for-copy"]),lr()}function ro(){$||($=!0,D=no("`"),O=no(" "),R=no("("),H=no(")"))}function io(n,t){Yu.call(this),this.hb_1=n,this.ib_1=t}function eo(n){Yu.call(this),this.jb_1=n}function uo(n,t){Yu.call(this),this.kb_1=n,this.lb_1=t}function oo(n){Yu.call(this),this.mb_1=n}function fo(n){Yu.call(this),this.nb_1=n}function so(n){Yu.call(this),this.ob_1=n}function co(n,t,r){Yu.call(this),this.pb_1=n,this.qb_1=t,this.rb_1=r}function ao(n){Yu.call(this),this.sb_1=n}function ho(n){Yu.call(this),this.tb_1=n}function lo(n){return n.xb_1.vb_1.k()}function _o(){if(Z)return lr();Z=!0,G=new ko("Inputs",0,"Build configuration inputs"),U=new ko("ByMessage",1,"Problems grouped by message"),V=new ko("ByLocation",2,"Problems grouped by location"),Q=new ko("IncompatibleTasks",3,"Incompatible tasks")}function vo(n){yc.call(this),this.yb_1=n}function go(n){yc.call(this),this.ac_1=n}function wo(n){yc.call(this),this.bc_1=n}function bo(n){yc.call(this),this.cc_1=n}function po(n){yo.call(this),this.dc_1=n}function mo(n,t,r,i,e,u,o,f){this.ec_1=n,this.fc_1=t,this.gc_1=r,this.hc_1=i,this.ic_1=e,this.jc_1=u,this.kc_1=o,this.lc_1=f}function ko(n,t,r){Di.call(this,n,t),this.qc_1=r}function yo(){Bc.call(this)}function qo(n,t){var r=Af(),i=Jf(Lo),e=Af().y9(Jf(No),[]),u=function(n,t){var r,i=Af(),e=Jf(Oo),u=Ff().ga("Learn more about the "),o=$f();return i.y9(e,[u,o.fb(Jf((r=t,function(n){return n.bd(r.tc_1),lr()})),t.sc_1),Ff().ga(".")])}(0,t.gc_1),o=Af().y9(Jf(Ao),[Co(0,t)]),f=Af();return r.y9(i,[e,u,o,f.y9(Jf(Mo),[Io(0,Ro(),t.lc_1,lo(t.jc_1)),Io(0,Ho(),t.lc_1,lo(t.hc_1)),Io(0,$o(),t.lc_1,lo(t.ic_1)),Io(0,Go(),t.lc_1,lo(t.kc_1))])])}function Bo(n,t){var r,i,e=Af(),u=Jf(Fo);switch(t.lc_1.q8_1){case 0:r=zo(0,t.jc_1,((i=function(n){return new wo(n)}).callableName="<init>",i));break;case 3:r=zo(0,t.kc_1,function(){var n=function(n){return new bo(n)};return n.callableName="<init>",n}());break;case 1:r=zo(0,t.hc_1,function(){var n=function(n){return new go(n)};return n.callableName="<init>",n}());break;case 2:r=zo(0,t.ic_1,function(){var n=function(n){return new vo(n)};return n.callableName="<init>",n}());break;default:le()}return e.y9(u,[r])}function Co(n,t){return Af().ja([Po(0,t),xo(0,t)])}function xo(n,t){for(var r=Af(),i=t.fc_1,e=Lr(),u=0,o=i.f();o.g();){var f=o.h(),s=u;u=s+1|0,jt(e,0===wr(s)?gr(jo(Vo(),f)):bt([Gf().ja([]),jo(Vo(),f)]))}return r.ha(e)}function jo(n,t){return Df().ja([Ic(t)])}function Po(n,t){return Nf().ja([jc().ka(t.ec_1)])}function Io(n,t,r,i){var e,u,o;return Af().y9(Jf((e=i,u=t,o=r,function(n){return n.t9("group-selector"),0===e?(n.t9("group-selector--disabled"),lr()):u.equals(o)?(n.t9("group-selector--active"),lr()):(n.u9(function(n){return function(t){return new po(n)}}(u)),lr()),lr()})),[Ff().rc(t.qc_1,[So(0,i)])])}function So(n,t){return Ff().y9(Jf(Do),[Ku(),Xu(),Ff().ga(""+t),Ju()])}function zo(n,t,r){return function(n,t,r){var i,e=Af(),u=Of();return e.ja([u.ha(ys(t,(i=r,function(n){var t,r=n.cd().ub_1;return r instanceof Hu?Nc(i,(Vo(),(t=function(n){return Eo(0,n)}).callableName="viewNode",t),n,r.va_1,r.wa_1,Cc()):r instanceof $u?Nc(i,function(){var n=function(n){return Eo(0,n)};return n.callableName="viewNode",n}(Vo()),n,r.xa_1,r.ya_1,xc()):r instanceof io?Nc(i,function(){var n=function(n){return Eo(0,n)};return n.callableName="viewNode",n}(Vo()),n,r.hb_1,r.ib_1,A,So(Vo(),n.cd().vb_1.k())):r instanceof Ou?Lc(i,n,r):Nc(i,function(){var n=function(n){return Eo(0,n)};return n.callableName="viewNode",n}(Vo()),n,r)})))])}(0,t.xb_1.uc().vc(),r)}function Eo(n,t){var r;return t instanceof eo?Sc((r=t,function(n){return n.ed("project "),n.fd(r.jb_1),lr()})):t instanceof co?Sc(function(n){return function(t){return t.ed(n.pb_1+" "),t.fd(n.qb_1),t.ed(" of "),t.fd(n.rb_1),lr()}}(t)):t instanceof so?Sc(function(n){return function(t){return t.ed("system property "),t.fd(n.ob_1),lr()}}(t)):t instanceof uo?Sc(function(n){return function(t){return t.ed("task "),t.fd(n.kb_1),t.ed(" of type "),t.fd(n.lb_1),lr()}}(t)):t instanceof fo?Sc(function(n){return function(t){return t.ed("bean of type "),t.fd(n.nb_1),lr()}}(t)):t instanceof ao?Sc(function(n){return function(t){return t.ed(n.sb_1),lr()}}(t)):t instanceof ho?Sc(function(n){return function(t){return t.ed("class "),t.fd(n.tb_1),lr()}}(t)):t instanceof Zu?Sc(function(n){return function(t){return t.ed(n.eb_1),lr()}}(t)):t instanceof Gu?Ic(t.za_1):t instanceof Qu?Qo(t):Ff().ga(ie(t))}function To(n){return n.t9("report-wrapper"),lr()}function Lo(n){return n.t9("header"),lr()}function No(n){return n.t9("gradle-logo"),lr()}function Ao(n){return n.t9("title"),lr()}function Mo(n){return n.t9("groups"),lr()}function Fo(n){return n.t9("content"),lr()}function Do(n){return n.t9("group-selector__count"),lr()}function Oo(n){return n.t9("learn-more"),lr()}function Ro(){return _o(),G}function Ho(){return _o(),U}function $o(){return _o(),V}function Go(){return _o(),Q}function Uo(){Y=this}function Vo(){return null==Y&&new Uo,Y}function Qo(n){var t;return $f().fb(Jf((t=n,function(n){return n.t9("documentation-button"),n.bd(t.cb_1),lr()})),n.db_1)}function Zo(n,t,r){this.kd_1=n,this.ld_1=t,this.md_1=r}function Yo(n,t,r){this.nd_1=n,this.od_1=t,this.pd_1=r}function Wo(n,t){for(var r=vf(n),i=t.trace,e=Nr(i.length),u=0,o=i.length;u<o;){var f,s=i[u];u=u+1|0,f=Jo(s),e.d(f)}return new Zo(t,r,e)}function Ko(n,t){var r,i=null==(r=t.kd_1.error)?null:nf(r);null==i||n.d(i)}function Xo(n){return function(n,t,r){var i=null==n.error?null:new Hu(t,r);return null==i?new $u(t,r):i}(n.kd_1,new Gu(n.ld_1),ef(n.kd_1))}function Jo(n){var t;switch(n.kind){case"Project":t=new eo(n.path);break;case"Task":t=new uo(n.path,n.type);break;case"TaskPath":t=new oo(n.path);break;case"Bean":t=new fo(n.type);break;case"Field":t=new co("field",n.name,n.declaringType);break;case"InputProperty":t=new co("input property",n.name,n.task);break;case"OutputProperty":t=new co("output property",n.name,n.task);break;case"SystemProperty":t=new so(n.name);break;case"PropertyUsage":t=new co("property",n.name,n.from);break;case"BuildLogic":t=new ao(n.location);break;case"BuildLogicClass":t=new ho(n.type);break;default:t=new Zu("Gradle runtime")}return t}function nf(n){var t=n.parts;if(null==t){var r=n.summary;return null==r?null:new Gu(vf(r))}for(var i=n.summary,e=null==i?null:vf(i),u=Lr(),o=Ri(t);o.g();){var f=rf(o.h());null==f||u.d(f)}for(var s=Mn(u,"\n"),c=Lr(),a=Ri(t);a.g();){var h=tf(a.h());null==h||c.d(h)}return new Ou(e,s,c)}function tf(n){var t=rf(n);if(null==t)return null;var r,i,e=nt(new Nt(function(n,t,r,i){var e;return Jn(nr(n,["\r\n","\n","\r"],A,r=r!==A&&r,i=i===A?0:i),(e=n,function(n){return Jt(e,n)}))}(t),!0,lf));return new Ru(e,(r=!(null==n.internalText),i=e.k(),r&&i>1?ps():null))}function rf(n){var t=n.text;return null==t?n.internalText:t}function ef(n){var t=n.documentationLink;return null==t?null:new Qu(t,"")}function uf(n,t){return new cs(of(n,jf().sd(t),ps()))}function of(n,t,r){return new ks(n,function(n,t){var r,i=Jn(On(n.o()),If);return nt(Jn(new rt(i,new ff(_f)),(r=t,function(n){return of(n.v3(),n.w3().wd_1,r)})))}(t,1===Pf(t)?ms():ps()),0===Pf(t)?ps():r)}function ff(n){this.td_1=n}function sf(n){var t=Lr(),r=n.ld_1,i=Dn(r.ca_1).fa_1,e=ie(Xt(Ze(i)?i:_e())),u=r.vd(function(n,t){var r;if(!(t>=0))throw fu(ie("Requested element count "+t+" is less than zero."));if(0===t)return Rn(n);if(Ue(n,Ti)){var i=n.k()-t|0;if(i<=0)return pt();if(1===i)return gr(function(n){if(Ue(n,Ei))return Qn(n);var t=n.f();if(!t.g())throw mu("Collection is empty.");for(var r=t.h();t.g();)r=t.h();return r}(n));if(r=Nr(),Ue(n,Ei)){if(Ue(n,li)){var e=t,u=n.k();if(e<u)do{var o=e;e=e+1|0,r.d(n.j(o))}while(e<u)}else for(var f=n.l(t);f.g();){var s=f.h();r.d(s)}return r}}else r=Lr();for(var c=0,a=n.f();a.g();){var h=a.h();c>=t?r.d(h):c=c+1|0}return mt(r)}(r.ca_1,1));return t.d(new io(new Zu(e),ef(n.kd_1))),t.d(new Gu(u)),t.m(n.md_1),t.j5()}function cf(n){var t=Lr(),r=n.ld_1,i=r.vd(r.ca_1);return t.d(new $u(new Gu(i),ef(n.kd_1))),t.j5()}function af(n){var t=Lr();return t.d(Xo(n)),t.m(n.md_1),Ko(t,n),t.j5()}function hf(n){var t=Lr();return t.m(new St(n.md_1)),t.d(Xo(n)),Ko(t,n),t.j5()}function lf(n){return Wi(n)>0}function _f(n,t){return function(n,t){return n===t?0:null==n?-1:null==t?1:Ji(null!=n&&("string"==(i=typeof(r=n))||"boolean"===i||function(n){return"number"==typeof n||n instanceof de}(r)||Ue(r,cr))?n:_e(),t);var r,i}(Oi(n.v3()),Oi(t.v3()))}function vf(n){var t;return Bf().qd((t=n,function(n){for(var r=t,i=0,e=r.length;i<e;){var u=r[i];i=i+1|0;var o=u.text;null==o||n.ed(o);var f=u.name;null==f||(n.fd(f),lr())}return lr()}))}function df(n,t){return(0!==(r=n)?r.toString():"No")+" "+gf(t,n)+" "+wf(n)+" found";var r}function gf(n,t){return t<2?n:n+"s"}function wf(n){return n<=1?"was":"were"}function bf(n,t){this.sc_1=n,this.tc_1=t}function pf(n){kf.call(this),this.fa_1=n}function mf(n,t){kf.call(this),this.da_1=n,this.ea_1=t}function kf(){}function yf(){this.dd_1=Lr()}function qf(){W=this}function Bf(){return null==W&&new qf,W}function Cf(n){Bf(),this.ca_1=n}function xf(){K=this}function jf(){return null==K&&new xf,K}function Pf(n){return n.k()}function If(n){var t=n.j1(),r=n.i1();return fr(t,new Sf(Ue(r,Ni)?r:_e()))}function Sf(n){jf(),this.wd_1=n}function zf(n,t,r){var i;Tf(t,n,r),i="Component mounted at #"+n.id+".",wi(),(wi(),g).j7(i)}function Ef(n){var t=document.getElementById(n);if(null==t)throw hu("'"+n+"' element missing");return t}function Tf(n,t,r){var i,e,u;i=n.z9(r),e=t,u=function(n,t,r){return function(i){return Tf(n,r,n.ba(i,t)),lr()}}(n,r,t),fs(),e.innerHTML="",us(e,i,u)}function Lf(){return fs(),X}function Nf(){return fs(),J}function Af(){return fs(),nn}function Mf(){return fs(),tn}function Ff(){return fs(),rn}function Df(){return fs(),en}function Of(){return fs(),un}function Rf(){return fs(),on}function Hf(){return fs(),fn}function $f(){return fs(),sn}function Gf(){return fs(),cn}function Uf(n){this.x9_1=n}function Vf(){an=this}function Qf(){return null==an&&new Vf,an}function Zf(){hn=this,Xf.call(this)}function Yf(){return null==hn&&new Zf,hn}function Wf(n,t,r,i){t=t===A?pt():t,r=r===A?null:r,i=i===A?pt():i,Xf.call(this),this.be_1=n,this.ce_1=t,this.de_1=r,this.ee_1=i}function Kf(){}function Xf(){Qf()}function Jf(n){fs();var t,r=Lr();return n(new ns((t=r,function(n){return t.d(n),lr()}))),r}function ns(n){this.r9_1=n}function ts(n,t){es.call(this),this.fe_1=n,this.ge_1=t}function rs(n){es.call(this),this.he_1=n}function is(n,t){es.call(this),this.ie_1=n,this.je_1=t}function es(){}function us(n,t,r){if(fs(),t instanceof Wf)!function(n,t,r){var i=function(n,t,r){var i=n.createElement(t);return r(i),i}(he(n.ownerDocument),t,r);n.appendChild(i)}(n,t.be_1,(e=t,u=r,function(n){for(var t=e.ce_1.f();t.g();)os(n,t.h(),u);var r=e.de_1;null==r||function(n,t){n.appendChild(he(n.ownerDocument).createTextNode(t))}(n,r);for(var i=e.ee_1.f();i.g();)us(n,i.h(),u);return lr()}));else if(t instanceof Kf){var i=t instanceof Kf?t:_e();us(n,i.ke_1,function(n,t){return function(r){return n(t.le_1(r)),lr()}}(r,i))}else if(oe(t,Yf()))return lr();var e,u}function os(n,t,r){var i,e;fs(),t instanceof is?n.setAttribute(t.ie_1,t.je_1):t instanceof rs?function(n,t){for(var r=Lr(),i=0,e=t.length;i<e;){var u=t[i];i=i+1|0,Nu(n,u)||r.d(u)}var o=r;if(!o.i()){var f=n.className,s=ie(Xt(Ze(f)?f:_e())),c=bi();c.p7(s),0!==Wi(s)&&c.p7(" "),Fn(o,c," "),n.className=c.toString()}}(n,[t.he_1]):t instanceof ts&&n.addEventListener(t.fe_1,(i=r,e=t,function(n){return n.stopPropagation(),i(e.ge_1(n)),lr()}))}function fs(){ln||(ln=!0,X=Yf(),new Uf("hr"),J=new Uf("h1"),new Uf("h2"),nn=new Uf("div"),new Uf("pre"),tn=new Uf("code"),rn=new Uf("span"),en=new Uf("small"),un=new Uf("ol"),on=new Uf("ul"),fn=new Uf("li"),sn=new Uf("a"),cn=new Uf("br"),new Uf("p"))}function ss(n){as.call(this),this.ne_1=n}function cs(n){this.xb_1=n}function as(){}function hs(n){return n.me(A,A,n.wb_1.ad())}function ls(){_n=this}function _s(){return null==_n&&new ls,_n}function vs(){if(gn)return lr();gn=!0,vn=new ws("Collapsed",0),dn=new ws("Expanded",1)}function ds(n){bs.call(this),this.ve_1=n}function gs(n,t,r){bs.call(this),this.se_1=n,this.te_1=t,this.ue_1=r}function ws(n,t){Di.call(this,n,t)}function bs(){}function ps(){return vs(),vn}function ms(){return vs(),dn}function ks(n,t,r){t=t===A?pt():t,r=r===A?ps():r,this.ub_1=n,this.vb_1=t,this.wb_1=r}function ys(n,t){return nt(Jn(n,(r=t,function(n){return function(n,t){var r,i=n.cd(),e=Hf(),u=t(n),o=i.vb_1;r=null==(i.wb_1.equals(ms())&&!o.i()?o:null)?null:function(n,t){return Rf().ha(function(n,t){return ys(n.vc(),t)}(n,t))}(n,t);var f=r;return e.ja([u,null==f?Lf():f])}(n,r)})));var r}function qs(){if(kn)return lr();kn=!0,bn=new Bs("ByMessage",0,"Messages"),pn=new Bs("ByGroup",1,"Group"),mn=new Bs("ByFileLocation",2,"Locations")}function Bs(n,t,r){Di.call(this,n,t),this.cf_1=r}function Cs(n,t){this.df_1=n,this.ef_1=t}function xs(n,t){this.ff_1=n,this.gf_1=t}function js(n){return new ks(new Gu(Bf().rd(n+" more problem"+(n>1?"s have":" has")+" been skipped")))}function Ps(n,t,r,i){var e,u,o=n.v1(t);if(null==o){var f=Lr(),s=fr(new ks(new Vs(Bf().qd((u=t,function(n){return n.fd(u),lr()}))),f,ms()),f);n.h5(t,s),e=s}else e=o;e.u3_1.d(Es(r,i))}function Is(n,t,r,i){var e;if(t=t===A?Lr():t,r=r===A?oi():r,i===A){var u=wn;wn=u+1|0,e=u}else e=i;i=e,this.hf_1=n,this.if_1=t,this.jf_1=r,this.kf_1=i}function Ss(n,t){if(t.i())return null;for(var r,i=n,e=null,u=t.f();u.g();){var o=u.h();r=e;var f,s=i,c=o.ef_1+" ("+o.df_1+")",a=s.v1(c);if(null==a){var h=Lr(),l=new Is(new ks(new Vs(Bf().qd(Fs(o))),h,ms()),h);s.h5(c,l),f=l}else f=a;e=f,null==r||he(r).if_1.u(he(e).hf_1)||he(r).if_1.d(he(e).hf_1),i=he(e).jf_1}return e}function zs(n,t){if(n.k()===t.length){var r;n:{var i=function(n,t){var r=t.length,i=xt(n,10),e=Nr(Math.min(i,r)),u=0,o=n.f();t:for(;o.g();){var f,s=o.h();if(u>=r)break t;var c=u;u=c+1|0,f=fr(s,t[c]),e.d(f)}return e}(n,t);if(Ue(i,Ti)&&i.i())r=!0;else{for(var e=i.f();e.g();){var u=e.h();if(u.t3_1.df_1!==u.u3_1.name||u.t3_1.ef_1!==u.u3_1.displayName){r=!1;break n}}r=!0}}return r}return!1}function Es(n,t,r){var i=function(n,t,r){t=t===A?null:t;var i=Ns(function(n,t){return n&&null!=t.contextualLabel?he(t.contextualLabel):Ts(t)}(r=r!==A&&r,n),t).j5();return Ls(n,new Gu(i))}(n,t=t===A?null:t,r=r!==A&&r),e=function(n,t,r){r=r!==A&&r;var i,e=n.problemDetails;if(null==e)i=null;else{var u,o=e[0].text,f=null==o?null:function(n,t,r,i){if(r=r!==A&&r,i=i===A?0:i,1===t.length){var e=t[0];if(0!==Wi(e))return function(n,t,r,i){rr(i);var e=0,u=Wt(n,t,e,r);if(-1===u||1===i)return gr(ie(n));var o,f=i>0,s=Nr(f&&Kn(i,10));n:do{var c;if(c=ie(Ki(n,e,u)),s.d(c),e=u+t.length|0,f&&s.k()===(i-1|0))break n;u=Wt(n,t,e,r)}while(-1!==u);return o=ie(Ki(n,e,Wi(n))),s.d(o),s}(n,e,r,i)}for(var u=function(n){return new tt(n)}(nr(n,t,A,r,i)),o=Nr(xt(u,10)),f=u.f();f.g();){var s;s=Jt(n,f.h()),o.d(s)}return o}(o,["\n"]);if(null==f)u=null;else{for(var s=Nr(xt(f,10)),c=f.f();c.g();){var a,h=c.h();a=Ms(n)?Bf().qd(Os(h)):Bf().rd(h),s.d(a)}u=s}var l,_=u;if(null==_)l=null;else{for(var v=Nr(xt(_,10)),d=_.f();d.g();){var g;g=new ks(new Gu(d.h())),v.d(g)}l=v}var w=null==l?null:Hn(l);i=null==w?Lr():w}var b=i,p=null==b?Lr():b;r||null==n.contextualLabel||p.d(new ks(new Gu(Bf().rd(he(n.contextualLabel)))));var m=function(n){var t=n.solutions;if(null==t||0===t.length)return null;for(var r=new Vu(Bf().rd("Solutions")),i=he(n.solutions),e=Nr(i.length),u=0,o=i.length;u<o;){var f,s=i[u];u=u+1|0,f=new ks(new Uu(vf(s))),e.d(f)}return new ks(r,e)}(n);null==m||p.d(m);var k,y=n.error,q=null==y?null:nf(y);if(null==q||p.d(new ks(q)),t){var B=n.locations;k=!(null==B||0===B.length)}else k=!1;return k&&p.d(function(n){var t,r=n.locations;if(null==r)t=null;else{for(var i=Nr(r.length),e=Ri(r);e.g();){var u,o=e.h();u=new ks(new Gu(Bf().qd(Rs(o)))),i.d(u)}t=i}var f=t;return new ks(new Zu("Locations"),null==f?pt():f)}(n)),p}(n,null==t,r);return new ks(i,e)}function Ts(n){return function(n){if(0===n.length)throw mu("Array is empty.");return n[Nn(n)]}(n.problemId).displayName}function Ls(n,t){var r;switch(n.severity){case"WARNING":var i=n.documentationLink;r=new $u(t,null==i?null:new Qu(i,""));break;case"ERROR":var e=n.documentationLink;r=new Hu(t,null==e?null:new Qu(e,""));break;case"ADVICE":var u=n.documentationLink;r=new Qs(t,null==u?null:new Qu(u,""));break;default:console.error("no severity "+n.severity),r=t}return r}function Ns(n,t){t=t===A?null:t;var r,i=new yf;if(i.ed(n),null==t);else{if(null!=t.line){var e=As(t);i.xd(e+(null==(r=t).line||null==r.length?"":"-"+r.length),""+t.path+e)}var u=t.taskPath;null==u||i.fd(u);var o=t.pluginId;null!=o&&i.fd(o)}return i}function As(n){var t;if(null==n.line)t=null;else{var r,i=":"+n.line,e=n.column;t=i+(null==(r=null==e?null:":"+e)?"":r)}return null==t?"":t}function Ms(n){var t,r,i=n.problemId;n:{for(var e=0,u=i.length;e<u;){var o=i[e];if(e=e+1|0,"compilation"===o.name){r=o;break n}}r=null}if(null!=r){var f,s=n.problemId;n:{for(var c=0,a=s.length;c<a;){var h=s[c];if(c=c+1|0,"java"===h.name){f=h;break n}}f=null}t=!(null==f)}else t=!1;return t}function Fs(n){return function(t){return t.ed(n.ef_1),t.fd(n.df_1),lr()}}function Ds(n){return n.name}function Os(n){return function(t){return t.xd(function(n,t,r,i){i=i!==A&&i;var e=new RegExp(qi().t7(" "),i?"gui":"gu"),u=qi().u7(" ");return n.replace(e,u)}(n),""),lr()}}function Rs(n){return function(t){return t.ed("- "),t.fd(""+n.path+As(n)),lr()}}function Hs(){return qs(),bn}function $s(){return qs(),pn}function Gs(){return qs(),mn}function Us(n){Zs.call(this),this.lf_1=n}function Vs(n,t){t=t!==A&&t,Zs.call(this),this.mf_1=n,this.nf_1=t}function Qs(n,t){t=t===A?null:t,Yu.call(this),this.of_1=n,this.pf_1=t}function Zs(){Yu.call(this)}function Ys(n){yc.call(this),this.qf_1=n}function Ws(n){yc.call(this),this.rf_1=n}function Ks(n){yc.call(this),this.sf_1=n}function Xs(n){nc.call(this),this.tf_1=n}function Js(n,t,r,i,e,u,o,f){this.uf_1=n,this.vf_1=t,this.wf_1=r,this.xf_1=i,this.yf_1=e,this.zf_1=u,this.ag_1=o,this.bg_1=f}function nc(){Bc.call(this)}function tc(n,t){var r=Lr();lo(t.xf_1)>0&&r.d(fc(0,Hs(),t.bg_1,t.ag_1)),lo(t.yf_1)>0&&r.d(fc(0,$s(),t.bg_1,t.ag_1)),lo(t.zf_1)>0&&r.d(fc(0,Gs(),t.bg_1,t.ag_1));var i=Af(),e=Jf(hc),u=Af().y9(Jf(lc),[]),o=function(n,t){var r,i=Af(),e=Jf(wc),u=Ff().ga("Learn more about "),o=$f();return i.y9(e,[u,o.fb(Jf((r=t,function(n){return n.bd(r.tc_1),lr()})),t.sc_1),Ff().ga(".")])}(0,t.wf_1),f=Af().y9(Jf(_c),[ic(0,t)]),s=Af();return i.y9(e,[u,o,f,s.zd(Jf(vc),r)])}function rc(n,t){var r,i,e=Af(),u=Jf(dc);switch(t.bg_1.q8_1){case 0:r=sc(0,t.xf_1,((i=function(n){return new Ys(n)}).callableName="<init>",i));break;case 1:r=sc(0,t.yf_1,function(){var n=function(n){return new Ws(n)};return n.callableName="<init>",n}());break;case 2:r=sc(0,t.zf_1,function(){var n=function(n){return new Ks(n)};return n.callableName="<init>",n}());break;default:le()}return e.y9(u,[r])}function ic(n,t){return Af().ja([oc(0,t),ec(0,t)])}function ec(n,t){for(var r=Af(),i=t.vf_1,e=Lr(),u=0,o=i.f();o.g();){var f=o.h(),s=u;u=s+1|0,jt(e,0===wr(s)?gr(uc(pc(),f)):bt([Gf().ja([]),uc(pc(),f)]))}return r.ha(e)}function uc(n,t){return Df().ja([Ic(t)])}function oc(n,t){return Nf().ja([jc().ka(t.uf_1)])}function fc(n,t,r,i){var e,u,o,f;return Af().y9(Jf((e=i,u=t,o=r,function(n){return n.t9("group-selector"),0===e?(n.t9("group-selector--disabled"),lr()):u.equals(o)?(n.t9("group-selector--active"),lr()):(n.u9(function(n){return function(t){return new Xs(n)}}(u)),lr()),lr()})),[Ff().rc(t.cf_1,[(f=i,Ff().y9(Jf(gc),[Ku(),Xu(),Ff().ga(""+f),Ju()]))])])}function sc(n,t,r){return function(n,t,r){var i,e=Af(),u=Of();return e.ja([u.ha(ys(t,(i=r,function(n){return function(n,t,r,i){var e,u;return t instanceof Us?Ic(Bf().rd(t.lf_1)):t instanceof Vs?Af().y9(Jf((u=t,function(n){return u.nf_1&&(n.t9("uncategorized"),lr()),lr()})),[Af().ja([zc(r,i),Ic(t.mf_1)])]):t instanceof Ou?Lc(i,r,t):t instanceof Gu?Ic(t.za_1):t instanceof Uu?Af().ja([(Vc(),xn),Ic(t.ab_1)]):t instanceof Vu?Af().ja([zc(r,i),Ic(t.bb_1)]):t instanceof Hu?Nc(i,((e=function(n){return cc(0,n)}).callableName="viewIt",e),r,t.va_1,t.wa_1,Cc()):t instanceof Qs?Nc(i,function(){var n=function(n){return cc(0,n)};return n.callableName="viewIt",n}(),r,t.of_1,t.pf_1,(Vc(),Bn)):t instanceof $u?Nc(i,function(){var n=function(n){return cc(0,n)};return n.callableName="viewIt",n}(),r,t.xa_1,t.ya_1,xc()):t instanceof Zu?Af().ja([zc(r,i),Ic(Bf().rd(t.eb_1))]):Ff().ga("Unknown node type viewNode: "+t)}(pc(),n.cd().ub_1,n,i)})))])}(0,t.xb_1.uc().vc(),r)}function cc(n,t){var r;if(t instanceof Qu)r=Qo(t);else if(t instanceof Zu)r=Ic(Bf().rd(t.eb_1));else if(t instanceof Gu)r=Ic(t.za_1);else{var i="Unknown node type viewIt: "+t;console.error(i),r=Ff().ga(i)}return r}function ac(n){return n.t9("report-wrapper"),lr()}function hc(n){return n.t9("header"),lr()}function lc(n){return n.t9("gradle-logo"),lr()}function _c(n){return n.t9("title"),lr()}function vc(n){return n.t9("groups"),lr()}function dc(n){return n.t9("content"),lr()}function gc(n){return n.t9("group-selector__count"),lr()}function wc(n){return n.t9("learn-more"),lr()}function bc(){yn=this,document.title="Gradle Problem Report"}function pc(){return null==yn&&new bc,yn}function mc(n,t,r){return n.pe(t.zb().oe(),r)}function kc(n){Bc.call(this),this.hd_1=n}function yc(){Bc.call(this)}function qc(n,t){Bc.call(this),this.wc_1=n,this.xc_1=t}function Bc(){}function Cc(){return Vc(),qn}function xc(){return Vc(),Cn}function jc(){return Vc(),jn}function Pc(){return Vc(),Pn}function Ic(n){return Vc(),Pc().ka(n)}function Sc(n){return Vc(),Pc().ka(Bf().qd(n))}function zc(n,t){return Vc(),n.cd().ye()?Ac(n,t):function(n){return Vc(),Ff().fb(Jf(Gc),Mc(n))}(n)}function Ec(n,t,r,i){var e,u,o;return Vc(),Ff().fb(Jf((e=r,u=t,o=i,function(n){return n.t9("java-exception-part-toggle"),n.u9(function(n,t){return function(r){return new qc(n,t())}}(u,o)),n.s9("Click to "+function(n){var t;switch(Vc(),n.q8_1){case 0:t="show";break;case 1:t="hide";break;default:le()}return t}(e)),lr()})),"("+n+" internal "+gf("line",n)+" "+function(n){var t;switch(Vc(),n.q8_1){case 0:t="hidden";break;case 1:t="shown";break;default:le()}return t}(r)+")")}function Tc(n,t){t=t===A?Lf():t,Vc();for(var r=Rf(),i=Nr(xt(n,10)),e=0,u=n.f();u.g();){var o,f=e;e=f+1|0,s=u.h(),c=(c=0===wr(f)?t:Lf())===A?Lf():c,Vc(),o=Hf().ja([Mf().ga(s),c]),i.d(o)}var s,c;return r.ha(i)}function Lc(n,t,r){Vc();var i,e,u,o=Af(),f=Ac(t,n),s=Ff().ga("Exception"),c=Ff().ja([(Vc(),In).v9(r.na_1,"Copy exception to the clipboard")]),a=null==r.ma_1?null:Ff().ga(" "),h=null==a?Lf():a,l=r.ma_1,_=null==l?null:Ic(l),v=null==_?Lf():_;switch(t.cd().wb_1.q8_1){case 0:i=Lf();break;case 1:i=function(n,t){Vc();for(var r=Af(),i=Jf(Uc),e=n.oa_1,u=Nr(xt(e,10)),o=0,f=e.f();f.g();){var s,c=f.h(),a=o;o=a+1|0;var h,l=wr(a);if(null!=c.sa_1){var _,v=Ec(c.ra_1.k(),l,c.sa_1,t),d=c.sa_1;switch(null==d?-1:d.q8_1){case 0:_=Tc(Un(c.ra_1,1),v);break;case 1:_=Tc(c.ra_1,v);break;default:le()}h=_}else h=Tc(c.ra_1);s=h,u.d(s)}return r.zd(i,u)}(r,(e=n,u=t,function(){return e(new ss(u))}));break;default:le()}return o.ja([f,s,c,h,v,i])}function Nc(n,t,r,i,e,u,o){e=e===A?null:e,u=u===A?Lf():u,o=o===A?Lf():o,Vc();var f=Af(),s=zc(r,n),c=t(i),a=null==e?null:t(e);return f.ja([s,u,c,null==a?Lf():a,o])}function Ac(n,t){var r,i;return Vc(),Ff().fb(Jf((r=n,i=t,function(n){return n.gb(["invisible-text","tree-btn"]),r.cd().wb_1===ps()&&(n.t9("collapsed"),lr()),r.cd().wb_1===ms()&&(n.t9("expanded"),lr()),n.s9("Click to "+function(n){var t;switch(Vc(),n.q8_1){case 0:t="expand";break;case 1:t="collapse";break;default:le()}return t}(r.cd().wb_1)),n.u9(function(n,t){return function(r){return n(new ss(t))}}(i,r)),lr()})),Mc(n))}function Mc(n){return Vc(),function(n,t){var r;if(!(t>=0))throw fu(ie("Count 'n' must be non-negative, but was "+t+"."));switch(t){case 0:r="";break;case 1:r=ie(n);break;default:var i="";if(0!==Wi(n))for(var e=ie(n),u=t;1&~u||(i+=e),0!=(u=u>>>1|0);)e+=e;return i}return r}("    ",n.we()-1|0)+"- "}function Fc(n){return Vc(),n.gb(["invisible-text","error-icon"]),lr()}function Dc(n){return Vc(),n.gb(["invisible-text","advice-icon"]),lr()}function Oc(n){return Vc(),n.gb(["invisible-text","warning-icon"]),lr()}function Rc(n){return Vc(),n.gb(["invisible-text","enum-icon"]),lr()}function Hc(n){return Vc(),new kc(n)}function $c(n){return Vc(),new kc(n)}function Gc(n){return Vc(),n.gb(["invisible-text","leaf-icon"]),lr()}function Uc(n){return Vc(),n.t9("java-exception"),lr()}function Vc(){if(!Sn){Sn=!0;var n=Ff();qn=n.fb(Jf(Fc),"[error] ");var t=Ff();Bn=t.fb(Jf(Dc),"[advice] ");var r=Ff();Cn=r.fb(Jf(Oc),"[warn]  ");var i=Ff();xn=i.fb(Jf(Rc),"[enum]  "),jn=new Du,Pn=new Du(Hc),In=new Mu($c)}}return Ge(Yn,A,Re),Ge(tt,A,Re),Ge(rt,A,Re),Ge(Ti,"Collection",Ye),Ge(it,"AbstractCollection",Re,A,[Ti]),Ge(et,"IteratorImpl",Re),Ge(ut,"ListIteratorImpl",Re,et),Ge(ot,"Companion",Ke),Ge(Ei,"List",Ye,A,[Ti]),Ge(st,"AbstractList",Re,it,[it,Ei]),Ge(ct,A,Re),Ge(lt,"Companion",Ke),Ge(vt,A,Re,it),Ge(Ni,"Map",Ye),Ge(dt,"AbstractMap",Re,A,[Ni]),Ge(gt,"Companion",Ke),Ge(li,"RandomAccess",Ye),Ge(yt,"EmptyList",Ke,A,[Ei,li]),Ge(qt,"ArrayAsCollection",Re,A,[Ti]),Ge(Bt,"EmptyIterator",Ke),Ge(Pt,"IntIterator",Re),Ge(It,A,Re),Ge(St,"ReversedListReadOnly",Re,st),Ge(zt,A,Re),Ge(Et,"TransformingSequence",Re),Ge(Lt,A,Re),Ge(Nt,"FilteringSequence",Re),Ge(Mi,"Set",Ye,A,[Ti]),Ge(Mt,"EmptySet",Ke,A,[Mi]),Ge(Ot,"Companion",Ke),Ge(Vt,"IntProgression",Re),Ge(Ht,"IntRange",Re,Vt),Ge($t,"IntProgressionIterator",Re,Pt),Ge(Gt,"Companion",Ke),Ge(er,A,Re),Ge(ur,"DelimitedRangesSequence",Re),Ge(or,"Pair",Re),Ge(sr,"CharSequence",Ye),Ge(cr,"Comparable",Ye),Ge(ar,"Number",Re),Ge(hr,"Unit",Ke),Ge(_r,"IntCompanionObject",Ke),Ge(mr,"AbstractMutableCollection",Re,it,[it,Ti]),Ge(kr,"IteratorImpl",Re),Ge(yr,"ListIteratorImpl",Re,kr),Ge(qr,"AbstractMutableList",Re,mr,[mr,Ei,Ti]),Ge(Br,A,Re),Ge(Cr,A,Re),Ge(Li,"Entry",Ye),Ge(Ai,"MutableEntry",Ye,A,[Li]),Ge(xr,"SimpleEntry",Re,A,[Ai]),Ge(zr,"AbstractMutableSet",Re,mr,[mr,Ti,Mi]),Ge(jr,"AbstractEntrySet",Re,zr),Ge(Pr,A,Re,zr),Ge(Ir,A,Re,mr),Ge(Sr,"AbstractMutableMap",Re,dt,[dt,Ni]),Ge(Er,"Companion",Ke),Ge(Fr,"ArrayList",Re,qr,[qr,Ei,Ti,li]),Ge(Rr,"HashCode",Ke),Ge(Hr,"EntrySet",Re,jr),Ge(Vr,"HashMap",Re,Sr,[Sr,Ni]),Ge(Zr,"HashSet",Re,zr,[zr,Ti,Mi]),Ge(Xr,A,Re),Ge(ni,"InternalMap",Ye),Ge(Jr,"InternalHashCodeMap",Re,A,[ni]),Ge(ti,"EntryIterator",Re),Ge(ri,"Companion",Ke),Ge(ei,"ChainEntry",Re,xr),Ge(ui,"EntrySet",Re,jr),Ge(si,"LinkedHashMap",Re,Vr,[Vr,Ni]),Ge(ci,"Companion",Ke),Ge(hi,"LinkedHashSet",Re,Zr,[Zr,Ti,Mi]),Ge(_i,"BaseOutput",Re),Ge(vi,"NodeJsOutput",Re,_i),Ge(gi,"BufferedOutput",Re,_i),Ge(di,"BufferedOutputToConsoleLog",Re,gi),Ge(pi,"StringBuilder",Re,A,[sr]),Ge(yi,"Companion",Ke),Ge(Bi,"Regex",Re),Ge(Ii,"Companion",Ke),Ge(zi,"Char",Re,A,[cr]),Ge(Fi,"Companion",Ke),Ge(Di,"Enum",Re,A,[cr]),Ge(Hi,A,Re),Ge(ve,"Companion",Ke),Ge(de,"Long",Re,ar,[ar,cr]),Ge(iu,"Letter",Ke),Ge(uu,"OtherLowercase",Ke),Ge(du,"Exception",Re,Error),Ge(bu,"RuntimeException",Re,du),Ge(su,"IllegalArgumentException",Re,bu),Ge(au,"IndexOutOfBoundsException",Re,bu),Ge(lu,"IllegalStateException",Re,bu),Ge(ku,"NoSuchElementException",Re,bu),Ge(qu,"ArithmeticException",Re,bu),Ge(xu,"UnsupportedOperationException",Re,bu),Ge(Pu,"NullPointerException",Re,bu),Ge(Su,"NoWhenBranchMatchedException",Re,bu),Ge(Eu,"ClassCastException",Re,bu),Ge(Lu,"UninitializedPropertyAccessException",Re,bu),Ge(Au,"Model",Re),Ge(Mu,"CopyButtonComponent",Re),Ge(Du,"PrettyTextComponent",Re),Ge(Yu,"ProblemNode",Re),Ge(Ou,"Exception",Re,Yu),Ge(Ru,"StackTracePart",Re),Ge(Hu,"Error",Re,Yu),Ge($u,"Warning",Re,Yu),Ge(Gu,"Message",Re,Yu),Ge(Uu,"ListElement",Re,Yu),Ge(Vu,"TreeNode",Re,Yu),Ge(Qu,"Link",Re,Yu),Ge(Zu,"Label",Re,Yu),Ge(io,"Info",Re,Yu),Ge(eo,"Project",Re,Yu),Ge(uo,"Task",Re,Yu),Ge(oo,"TaskPath",Re,Yu),Ge(fo,"Bean",Re,Yu),Ge(so,"SystemProperty",Re,Yu),Ge(co,"Property",Re,Yu),Ge(ao,"BuildLogic",Re,Yu),Ge(ho,"BuildLogicClass",Re,Yu),Ge(Bc,"BaseIntent",Re),Ge(yc,"TreeIntent",Re,Bc),Ge(vo,"TaskTreeIntent",Re,yc),Ge(go,"MessageTreeIntent",Re,yc),Ge(wo,"InputTreeIntent",Re,yc),Ge(bo,"IncompatibleTaskTreeIntent",Re,yc),Ge(yo,"Intent",Re,Bc),Ge(po,"SetTab",Re,yo),Ge(mo,"Model",Re),Ge(ko,"Tab",Re,Di),Ge(Uo,"ConfigurationCacheReportPage",Ke),Ge(Zo,"ImportedProblem",Re),Ge(Yo,"ImportedDiagnostics",Re),Ge(ff,"sam$kotlin_Comparator$0",Re),Ge(bf,"LearnMore",Re),Ge(kf,"Fragment",Re),Ge(pf,"Text",Re,kf),Ge(mf,"Reference",Re,kf),Ge(yf,"Builder",Re),Ge(qf,"Companion",Ke),Ge(Cf,"PrettyText",Re),Ge(xf,"Companion",Ke),Ge(Sf,"Trie",Re),Ge(Uf,"ViewFactory",Re),Ge(Vf,"Companion",Ke),Ge(Xf,"View",Re),Ge(Zf,"Empty",Ke,Xf),Ge(Wf,"Element",Re,Xf),Ge(Kf,"MappedView",Re,Xf),Ge(ns,"Attributes",Re),Ge(es,"Attribute",Re),Ge(ts,"OnEvent",Re,es),Ge(rs,"ClassName",Re,es),Ge(is,"Named",Re,es),Ge(as,"Intent",Re),Ge(ss,"Toggle",Re,as),Ge(cs,"Model",Re),Ge(ls,"TreeView",Ke),Ge(bs,"Focus",Re),Ge(ds,"Original",Re,bs),Ge(gs,"Child",Re,bs),Ge(ws,"ViewState",Re,Di),Ge(ks,"Tree",Re),Ge(Bs,"Tab",Re,Di),Ge(Cs,"ProblemIdElement",Re),Ge(xs,"ProblemSummary",Re),Ge(Is,"ProblemNodeGroup",Re),Ge(Zs,"ProblemApiNode",Re,Yu),Ge(Us,"Text",Re,Zs),Ge(Vs,"ProblemIdNode",Re,Zs),Ge(Qs,"Advice",Re,Yu),Ge(Ys,"MessageTreeIntent",Re,yc),Ge(Ws,"ProblemIdTreeIntent",Re,yc),Ge(Ks,"FileLocationTreeIntent",Re,yc),Ge(nc,"Intent",Re,Bc),Ge(Xs,"SetTab",Re,nc),Ge(Js,"Model",Re),Ge(bc,"ProblemsReportPage",Ke),Ge(kc,"Copy",Re,Bc),Ge(qc,"ToggleStackTracePart",Re,Bc),se(Yn).f=function(){return this.n_1.f()},se(tt).f=function(){return this.r_1.f()},se(rt).f=function(){var n,t,r=function(n,t){for(var r=n.f();r.g();){var i=r.h();t.d(i)}return t}(this.s_1,Lr());return n=r,t=this.t_1,function(n,t){if(n.k()<=1)return lr();var r=br(n);!function(n,t){if(function(){if(null!=l)return l;l=!1;var n=[],t=0;if(t<600)do{var r=t;t=t+1|0,n.push(r)}while(t<600);var i=Or;n.sort(i);var e=1,u=n.length;if(e<u)do{var o=e;e=e+1|0;var f=n[o-1|0],s=n[o];if((3&f)==(3&s)&&f>=s)return!1}while(e<u);return l=!0,!0}()){var r=(i=t,function(n,t){return i.compare(n,t)});n.sort(r)}else!function(n,t,r,i){var e=n.length,u=function(n){var t=0,r=n.length-1|0;if(t<=r)do{var i=t;t=t+1|0,n[i]=null}while(i!==r);return n}(Array(e)),o=Dr(n,u,0,r,i);if(o!==n){var f=0;if(f<=r)do{var s=f;f=f+1|0,n[s]=o[s]}while(s!==r)}}(n,0,Nn(n),t);var i}(r,t);var i=0,e=r.length;if(i<e)do{var u=i;i=i+1|0,n.f4(u,r[u])}while(i<e)}(n,t),r.f()},se(it).u=function(n){var t;n:if(Ue(this,Ti)&&this.i())t=!1;else{for(var r=this.f();r.g();)if(oe(r.h(),n)){t=!0;break n}t=!1}return t},se(it).v=function(n){var t;n:if(Ue(n,Ti)&&n.i())t=!0;else{for(var r=n.f();r.g();){var i=r.h();if(!this.u(i)){t=!1;break n}}t=!0}return t},se(it).i=function(){return 0===this.k()},se(it).toString=function(){return Mn(this,", ","[","]",A,A,(n=this,function(t){return t===n?"(this Collection)":Oi(t)}));var n},se(it).toArray=function(){return dr(this)},se(et).g=function(){return this.w_1<this.x_1.k()},se(et).h=function(){if(!this.g())throw pu();var n=this.w_1;return this.w_1=n+1|0,this.x_1.j(n)},se(ut).c1=function(){return this.w_1>0},se(ut).d1=function(){if(!this.c1())throw pu();return this.w_1=this.w_1-1|0,this.a1_1.j(this.w_1)},se(ot).e1=function(n,t){if(n<0||n>=t)throw cu("index: "+n+", size: "+t)},se(ot).b1=function(n,t){if(n<0||n>t)throw cu("index: "+n+", size: "+t)},se(ot).f1=function(n){for(var t=1,r=n.f();r.g();){var i=r.h(),e=zn(31,t),u=null==i?null:ee(i);t=e+(null==u?0:u)|0}return t},se(ot).g1=function(n,t){if(n.k()!==t.k())return!1;for(var r=t.f(),i=n.f();i.g();)if(!oe(i.h(),r.h()))return!1;return!0},se(st).f=function(){return new et(this)},se(st).l=function(n){return new ut(this,n)},se(st).equals=function(n){return n===this||!(null==n||!Ue(n,Ei))&&ft().g1(this,n)},se(st).hashCode=function(){return ft().f1(this)},se(ct).g=function(){return this.h1_1.g()},se(ct).h=function(){return this.h1_1.h().i1()},se(lt).k1=function(n){var t=n.j1(),r=null==t?null:ee(t),i=null==r?0:r,e=n.i1(),u=null==e?null:ee(e);return i^(null==u?0:u)},se(lt).l1=function(n){return Oi(n.j1())+"="+Oi(n.i1())},se(lt).m1=function(n,t){return!(null==t||!Ue(t,Li))&&!!oe(n.j1(),t.j1())&&oe(n.i1(),t.i1())},se(vt).r1=function(n){return this.q1_1.s1(n)},se(vt).u=function(n){return!(null!=n&&!Qe(n))&&this.r1(null==n||Qe(n)?n:_e())},se(vt).f=function(){return new ct(this.q1_1.o().f())},se(vt).k=function(){return this.q1_1.k()},se(dt).t1=function(n){return!(null==ht(this,n))},se(dt).s1=function(n){var t;n:{var r=this.o();if(Ue(r,Ti)&&r.i())t=!1;else{for(var i=r.f();i.g();)if(oe(i.h().i1(),n)){t=!0;break n}t=!1}}return t},se(dt).u1=function(n){if(null==n||!Ue(n,Li))return!1;var t=n.j1(),r=n.i1(),i=(Ue(this,Ni)?this:_e()).v1(t);return!(!oe(r,i)||null==i&&!(Ue(this,Ni)?this:_e()).t1(t))},se(dt).equals=function(n){if(n===this)return!0;if(null==n||!Ue(n,Ni))return!1;if(this.k()!==n.k())return!1;var t;n:{var r=n.o();if(Ue(r,Ti)&&r.i())t=!0;else{for(var i=r.f();i.g();){var e=i.h();if(!this.u1(e)){t=!1;break n}}t=!0}}return t},se(dt).v1=function(n){var t=ht(this,n);return null==t?null:t.i1()},se(dt).hashCode=function(){return ee(this.o())},se(dt).i=function(){return 0===this.k()},se(dt).k=function(){return this.o().k()},se(dt).toString=function(){var n;return Mn(this.o(),", ","{","}",A,A,(n=this,function(t){return n.p1(t)}))},se(dt).p1=function(n){return at(this,n.j1())+"="+at(this,n.i1())},se(dt).w1=function(){return null==this.o1_1&&(this.o1_1=new vt(this)),he(this.o1_1)},se(gt).x1=function(n){for(var t=0,r=n.f();r.g();){var i=r.h(),e=t,u=null==i?null:ee(i);t=e+(null==u?0:u)|0}return t},se(gt).y1=function(n,t){return n.k()===t.k()&&n.v(t)},se(yt).equals=function(n){return!(null==n||!Ue(n,Ei))&&n.i()},se(yt).hashCode=function(){return 1},se(yt).toString=function(){return"[]"},se(yt).k=function(){return 0},se(yt).i=function(){return!0},se(yt).a2=function(n){return n.i()},se(yt).v=function(n){return this.a2(n)},se(yt).j=function(n){throw cu("Empty list doesn't contain element at index "+n+".")},se(yt).f=function(){return Ct()},se(yt).l=function(n){if(0!==n)throw cu("Index: "+n);return Ct()},se(qt).k=function(){return this.b2_1.length},se(qt).i=function(){return 0===this.b2_1.length},se(qt).d2=function(n){return function(n,t){return An(n,t)>=0}(this.b2_1,n)},se(qt).e2=function(n){var t;n:if(Ue(n,Ti)&&n.i())t=!0;else{for(var r=n.f();r.g();){var i=r.h();if(!this.d2(i)){t=!1;break n}}t=!0}return t},se(qt).v=function(n){return this.e2(n)},se(qt).f=function(){return Ri(this.b2_1)},se(Bt).g=function(){return!1},se(Bt).c1=function(){return!1},se(Bt).h=function(){throw pu()},se(Bt).d1=function(){throw pu()},se(Pt).h=function(){return this.f2()},se(It).g=function(){return this.g2_1.c1()},se(It).c1=function(){return this.g2_1.g()},se(It).h=function(){return this.g2_1.d1()},se(It).d1=function(){return this.g2_1.h()},se(St).k=function(){return this.i2_1.k()},se(St).j=function(n){return this.i2_1.j(function(n,t){if(!(0<=t&&t<=kt(n)))throw cu("Element index "+t+" must be in range ["+Oe(0,kt(n))+"].");return kt(n)-t|0}(this,n))},se(St).f=function(){return this.l(0)},se(St).l=function(n){return new It(this,n)},se(zt).h=function(){return this.k2_1.m2_1(this.j2_1.h())},se(zt).g=function(){return this.j2_1.g()},se(Et).f=function(){return new zt(this)},se(Lt).h=function(){if(-1===this.o2_1&&Tt(this),0===this.o2_1)throw pu();var n=this.p2_1;return this.p2_1=null,this.o2_1=-1,null==n||Qe(n)?n:_e()},se(Lt).g=function(){return-1===this.o2_1&&Tt(this),1===this.o2_1},se(Nt).f=function(){return new Lt(this)},se(Mt).equals=function(n){return!(null==n||!Ue(n,Mi))&&n.i()},se(Mt).hashCode=function(){return 0},se(Mt).toString=function(){return"[]"},se(Mt).k=function(){return 0},se(Mt).i=function(){return!0},se(Mt).a2=function(n){return n.i()},se(Mt).v=function(n){return this.a2(n)},se(Mt).f=function(){return Ct()},se(Ht).y2=function(){return this.z2_1},se(Ht).c3=function(){return this.a3_1},se(Ht).i=function(){return this.z2_1>this.a3_1},se(Ht).equals=function(n){return n instanceof Ht&&(!(!this.i()||!n.i())||this.z2_1===n.z2_1&&this.a3_1===n.a3_1)},se(Ht).hashCode=function(){return this.i()?-1:zn(31,this.z2_1)+this.a3_1|0},se(Ht).toString=function(){return this.z2_1+".."+this.a3_1},se($t).g=function(){return this.f3_1},se($t).f2=function(){var n=this.g3_1;if(n===this.e3_1){if(!this.f3_1)throw pu();this.f3_1=!1}else this.g3_1=this.g3_1+this.d3_1|0;return n},se(Gt).q=function(n,t,r){return new Vt(n,t,r)},se(Vt).f=function(){return new $t(this.z2_1,this.a3_1,this.b3_1)},se(Vt).i=function(){return this.b3_1>0?this.z2_1>this.a3_1:this.z2_1<this.a3_1},se(Vt).equals=function(n){return n instanceof Vt&&(!(!this.i()||!n.i())||this.z2_1===n.z2_1&&this.a3_1===n.a3_1&&this.b3_1===n.b3_1)},se(Vt).hashCode=function(){return this.i()?-1:zn(31,zn(31,this.z2_1)+this.a3_1|0)+this.b3_1|0},se(Vt).toString=function(){return this.b3_1>0?this.z2_1+".."+this.a3_1+" step "+this.b3_1:this.z2_1+" downTo "+this.a3_1+" step "+(0|-this.b3_1)},se(er).h=function(){if(-1===this.j3_1&&ir(this),0===this.j3_1)throw pu();var n=this.m3_1,t=n instanceof Ht?n:_e();return this.m3_1=null,this.j3_1=-1,t},se(er).g=function(){return-1===this.j3_1&&ir(this),1===this.j3_1},se(ur).f=function(){return new er(this)},se(or).toString=function(){return"("+this.t3_1+", "+this.u3_1+")"},se(or).v3=function(){return this.t3_1},se(or).w3=function(){return this.u3_1},se(or).hashCode=function(){var n=null==this.t3_1?0:ee(this.t3_1);return zn(n,31)+(null==this.u3_1?0:ee(this.u3_1))|0},se(or).equals=function(n){if(this===n)return!0;if(!(n instanceof or))return!1;var t=n instanceof or?n:_e();return!!oe(this.t3_1,t.t3_1)&&!!oe(this.u3_1,t.u3_1)},se(hr).toString=function(){return"kotlin.Unit"},se(_r).b4=function(){return this.MIN_VALUE},se(_r).c4=function(){return this.MAX_VALUE},se(_r).d4=function(){return this.SIZE_BYTES},se(_r).e4=function(){return this.SIZE_BITS},se(mr).m=function(n){this.g4();for(var t=!1,r=n.f();r.g();){var i=r.h();this.d(i)&&(t=!0)}return t},se(mr).toJSON=function(){return this.toArray()},se(mr).g4=function(){},se(kr).g=function(){return this.h4_1<this.j4_1.k()},se(kr).h=function(){if(!this.g())throw pu();var n=this.h4_1;return this.h4_1=n+1|0,this.i4_1=n,this.j4_1.j(this.i4_1)},se(yr).c1=function(){return this.h4_1>0},se(yr).d1=function(){if(!this.c1())throw pu();return this.h4_1=this.h4_1-1|0,this.i4_1=this.h4_1,this.n4_1.j(this.i4_1)},se(qr).d=function(n){return this.g4(),this.p4(this.k(),n),!0},se(qr).f=function(){return new kr(this)},se(qr).u=function(n){return this.q4(n)>=0},se(qr).q4=function(n){var t=0,r=kt(this);if(t<=r)do{var i=t;if(t=t+1|0,oe(this.j(i),n))return i}while(i!==r);return-1},se(qr).l=function(n){return new yr(this,n)},se(qr).equals=function(n){return n===this||!(null==n||!Ue(n,Ei))&&ft().g1(this,n)},se(qr).hashCode=function(){return ft().f1(this)},se(Br).g=function(){return this.r4_1.g()},se(Br).h=function(){return this.r4_1.h().j1()},se(Cr).g=function(){return this.s4_1.g()},se(Cr).h=function(){return this.s4_1.h().i1()},se(xr).j1=function(){return this.t4_1},se(xr).i1=function(){return this.u4_1},se(xr).v4=function(n){var t=this.u4_1;return this.u4_1=n,t},se(xr).hashCode=function(){return _t().k1(this)},se(xr).toString=function(){return _t().l1(this)},se(xr).equals=function(n){return _t().m1(this,n)},se(jr).u=function(n){return this.w4(n)},se(Pr).y4=function(n){throw Cu("Add is not supported on keys")},se(Pr).d=function(n){return this.y4(null==n||Qe(n)?n:_e())},se(Pr).z4=function(n){return this.x4_1.t1(n)},se(Pr).u=function(n){return!(null!=n&&!Qe(n))&&this.z4(null==n||Qe(n)?n:_e())},se(Pr).f=function(){return new Br(this.x4_1.o().f())},se(Pr).k=function(){return this.x4_1.k()},se(Pr).g4=function(){return this.x4_1.g4()},se(Ir).f5=function(n){throw Cu("Add is not supported on values")},se(Ir).d=function(n){return this.f5(null==n||Qe(n)?n:_e())},se(Ir).r1=function(n){return this.e5_1.s1(n)},se(Ir).u=function(n){return!(null!=n&&!Qe(n))&&this.r1(null==n||Qe(n)?n:_e())},se(Ir).f=function(){return new Cr(this.e5_1.o().f())},se(Ir).k=function(){return this.e5_1.k()},se(Ir).g4=function(){return this.e5_1.g4()},se(Sr).g5=function(){return null==this.c5_1&&(this.c5_1=new Pr(this)),he(this.c5_1)},se(Sr).w1=function(){return null==this.d5_1&&(this.d5_1=new Ir(this)),he(this.d5_1)},se(Sr).g4=function(){},se(zr).equals=function(n){return n===this||!(null==n||!Ue(n,Mi))&&wt().y1(this,n)},se(zr).hashCode=function(){return wt().x1(this)},se(Fr).j5=function(){return this.g4(),this.c_1=!0,this.k()>0?this:Tr().i5_1},se(Fr).k=function(){return this.b_1.length},se(Fr).j=function(n){var t=this.b_1[Mr(this,n)];return null==t||Qe(t)?t:_e()},se(Fr).f4=function(n,t){this.g4(),Mr(this,n);var r=this.b_1[n];this.b_1[n]=t;var i=r;return null==i||Qe(i)?i:_e()},se(Fr).d=function(n){return this.g4(),this.b_1.push(n),this.o4_1=this.o4_1+1|0,!0},se(Fr).p4=function(n,t){this.g4(),this.b_1.splice(function(n,t){return ft().b1(t,n.k()),t}(this,n),0,t),this.o4_1=this.o4_1+1|0},se(Fr).m=function(n){if(this.g4(),n.i())return!1;for(var t,r,i,e=(t=this,r=n.k(),i=t.k(),t.b_1.length=t.k()+r|0,i),u=0,o=n.f();o.g();){var f=o.h(),s=u;u=s+1|0;var c=wr(s);this.b_1[e+c|0]=f}return this.o4_1=this.o4_1+1|0,!0},se(Fr).q4=function(n){return An(this.b_1,n)},se(Fr).toString=function(){return Ln(this.b_1,", ","[","]",A,A,Xi)},se(Fr).k5=function(){return[].slice.call(this.b_1)},se(Fr).toArray=function(){return this.k5()},se(Fr).g4=function(){if(this.c_1)throw Bu()},se(Rr).l5=function(n,t){return oe(n,t)},se(Rr).m5=function(n){var t=null==n?null:ee(n);return null==t?0:t},se(Hr).o5=function(n){throw Cu("Add is not supported on entries")},se(Hr).d=function(n){return this.o5(null!=n&&Ue(n,Ai)?n:_e())},se(Hr).w4=function(n){return this.n5_1.u1(n)},se(Hr).f=function(){return this.n5_1.t5_1.f()},se(Hr).k=function(){return this.n5_1.k()},se(Vr).t1=function(n){return this.t5_1.z4(n)},se(Vr).s1=function(n){var t;n:{var r=this.t5_1;if(Ue(r,Ti)&&r.i())t=!1;else{for(var i=r.f();i.g();){var e=i.h();if(this.u5_1.l5(e.i1(),n)){t=!0;break n}}t=!1}}return t},se(Vr).o=function(){return null==this.v5_1&&(this.v5_1=this.x5()),he(this.v5_1)},se(Vr).x5=function(){return new Hr(this)},se(Vr).v1=function(n){return this.t5_1.v1(n)},se(Vr).h5=function(n,t){return this.t5_1.h5(n,t)},se(Vr).k=function(){return this.t5_1.k()},se(Zr).d=function(n){return null==this.y5_1.h5(n,this)},se(Zr).u=function(n){return this.y5_1.t1(n)},se(Zr).i=function(){return this.y5_1.i()},se(Zr).f=function(){return this.y5_1.g5().f()},se(Zr).k=function(){return this.y5_1.k()},se(Xr).g=function(){return-1===this.z5_1&&(this.z5_1=function(n){if(null!=n.c6_1&&n.d6_1){var t=n.c6_1.length;if(n.e6_1=n.e6_1+1|0,n.e6_1<t)return 0}if(n.b6_1=n.b6_1+1|0,n.b6_1<n.a6_1.length){n.c6_1=n.g6_1.i6_1[n.a6_1[n.b6_1]];var r=n,i=n.c6_1;return r.d6_1=null!=i&&Ve(i),n.e6_1=0,0}return n.c6_1=null,1}(this)),0===this.z5_1},se(Xr).h=function(){if(!this.g())throw pu();var n=this.d6_1?this.c6_1[this.e6_1]:this.c6_1;return this.f6_1=n,this.z5_1=-1,n},se(Jr).w5=function(){return this.h6_1},se(Jr).k=function(){return this.j6_1},se(Jr).h5=function(n,t){var r=this.h6_1.m5(n),i=Kr(this,r);if(null==i)this.i6_1[r]=new xr(n,t);else{if(null==i||!Ve(i)){var e,u=i;return this.h6_1.l5(u.j1(),n)?u.v4(t):(e=[u,new xr(n,t)],this.i6_1[r]=e,this.j6_1=this.j6_1+1|0,null)}var o=i,f=Wr(o,this,n);if(null!=f)return f.v4(t);o.push(new xr(n,t))}return this.j6_1=this.j6_1+1|0,null},se(Jr).z4=function(n){return!(null==Yr(this,n))},se(Jr).v1=function(n){var t=Yr(this,n);return null==t?null:t.i1()},se(Jr).f=function(){return new Xr(this)},se(ti).g=function(){return!(null===this.m6_1)},se(ti).h=function(){if(!this.g())throw pu();var n=he(this.m6_1);this.l6_1=n;var t,r=n.b7_1;return t=r!==this.n6_1.y6_1.v6_1?r:null,this.m6_1=t,n},se(ei).v4=function(n){return this.d7_1.g4(),se(xr).v4.call(this,n)},se(ui).o5=function(n){throw Cu("Add is not supported on entries")},se(ui).d=function(n){return this.o5(null!=n&&Ue(n,Ai)?n:_e())},se(ui).w4=function(n){return this.y6_1.u1(n)},se(ui).f=function(){return new ti(this)},se(ui).k=function(){return this.y6_1.k()},se(ui).g4=function(){return this.y6_1.g4()},se(si).j5=function(){var n;if(this.g4(),this.x6_1=!0,this.k()>0)n=this;else{var t=ii().e7_1;n=Ue(t,Ni)?t:_e()}return n},se(si).t1=function(n){return this.w6_1.t1(n)},se(si).s1=function(n){var t=this.v6_1;if(null==t)return!1;var r=t;do{if(oe(r.i1(),n))return!0;r=he(r.b7_1)}while(r!==this.v6_1);return!1},se(si).x5=function(){return new ui(this)},se(si).v1=function(n){var t=this.w6_1.v1(n);return null==t?null:t.i1()},se(si).h5=function(n,t){this.g4();var r=this.w6_1.v1(n);if(null==r){var i=new ei(this,n,t);return this.w6_1.h5(n,i),function(n,t){if(null!=n.b7_1||null!=n.c7_1)throw hu(ie("Check failed."));var r=t.v6_1;if(null==r)t.v6_1=n,n.b7_1=n,n.c7_1=n;else{var i=r.c7_1;if(null==i)throw hu(ie("Required value was null."));var e=i;n.c7_1=e,n.b7_1=r,r.c7_1=n,e.b7_1=n}}(i,this),null}return r.v4(t)},se(si).k=function(){return this.w6_1.k()},se(si).g4=function(){if(this.x6_1)throw Bu()},se(hi).g4=function(){return this.y5_1.g4()},se(_i).h7=function(){this.i7("\n")},se(_i).j7=function(n){this.i7(n),this.h7()},se(vi).i7=function(n){var t=String(n);this.k7_1.write(t)},se(di).i7=function(n){var t=String(n),r=t.lastIndexOf("\n",0);if(r>=0){var i=this.m7_1;this.m7_1=i+t.substring(0,r),this.n7();var e=r+1|0;t=t.substring(e)}this.m7_1=this.m7_1+t},se(di).n7=function(){console.log(this.m7_1),this.m7_1=""},se(gi).i7=function(n){var t=this.m7_1;this.m7_1=t+String(n)},se(pi).x3=function(){return this.o7_1.length},se(pi).y3=function(n){var t=this.o7_1;if(!(n>=0&&n<=Yt(t)))throw cu("index: "+n+", length: "+this.x3()+"}");return Zi(t,n)},se(pi).z3=function(n,t){return this.o7_1.substring(n,t)},se(pi).i3=function(n){return this.o7_1=this.o7_1+new zi(n),this},se(pi).e=function(n){return this.o7_1=this.o7_1+Oi(n),this},se(pi).p7=function(n){var t=this.o7_1;return this.o7_1=t+(null==n?"null":n),this},se(pi).toString=function(){return this.o7_1},se(yi).t7=function(n){var t=this.q7_1;return n.replace(t,"\\$&")},se(yi).u7=function(n){var t=this.s7_1;return n.replace(t,"$$$$")},se(Bi).a8=function(n){this.x7_1.lastIndex=0;var t=this.x7_1.exec(ie(n));return null!=t&&0===t.index&&this.x7_1.lastIndex===Wi(n)},se(Bi).toString=function(){return this.x7_1.toString()},se(zi).o8=function(n){return ji(this.h3_1,n)},se(zi).a4=function(n){return function(n,t){return ji(n.h3_1,t instanceof zi?t.h3_1:_e())}(this,n)},se(zi).equals=function(n){return function(n,t){return t instanceof zi&&n===t.h3_1}(this.h3_1,n)},se(zi).hashCode=function(){return this.h3_1},se(zi).toString=function(){return Pi(this.h3_1)},se(Di).r8=function(n){return Ji(this.q8_1,n.q8_1)},se(Di).a4=function(n){return this.r8(n instanceof Di?n:_e())},se(Di).equals=function(n){return this===n},se(Di).hashCode=function(){return re(this)},se(Di).toString=function(){return this.p8_1},se(Hi).g=function(){return!(this.s8_1===this.t8_1.length)},se(Hi).h=function(){if(this.s8_1===this.t8_1.length)throw mu(""+this.s8_1);var n=this.s8_1;return this.s8_1=n+1|0,this.t8_1[n]},se(de).b9=function(n){return ke(this,n)},se(de).a4=function(n){return this.b9(n instanceof de?n:_e())},se(de).c9=function(n){return ye(this,n)},se(de).d9=function(n){return function(n,t){if(Me(),Se(t))throw vu("division by zero");if(Se(n))return ge();if(xe(n,pe())){if(xe(t,we())||xe(t,be()))return pe();if(xe(t,pe()))return we();var r=function(n){Me();return new de(n.u8_1>>>1|n.v8_1<<31,n.v8_1>>1)}(n),i=function(n){Me();return new de(n.u8_1<<1,n.v8_1<<1|n.u8_1>>>31)}(r.d9(t));return xe(i,ge())?Ie(t)?we():be():ye(i,qe(n,Be(t,i)).d9(t))}if(xe(t,pe()))return ge();if(Ie(n))return Ie(t)?Ee(n).d9(Ee(t)):Ee(Ee(n).d9(t));if(Ie(t))return Ee(n.d9(Ee(t)));for(var e=ge(),u=n;Ae(u,t);){for(var o=Ce(u)/Ce(t),f=Math.max(1,Math.floor(o)),s=Math.ceil(Math.log(f)/Math.LN2),c=s<=48?1:Math.pow(2,s-48),a=Le(f),h=Be(a,t);Ie(h)||Ne(h,u);)h=Be(a=Le(f-=c),t);Se(a)&&(a=we()),e=ye(e,a),u=qe(u,h)}return e}(this,n)},se(de).e9=function(){return this.f9().c9(new de(1,0))},se(de).f9=function(){return new de(~this.u8_1,~this.v8_1)},se(de).g9=function(){return this.u8_1},se(de).w8=function(){return Ce(this)},se(de).valueOf=function(){return this.w8()},se(de).equals=function(n){return n instanceof de&&xe(this,n)},se(de).hashCode=function(){return Me(),this.u8_1^this.v8_1},se(de).toString=function(){return je(this,10)},se(Au).toString=function(){return"Model(text="+this.o9_1+", tooltip="+this.p9_1+")"},se(Au).hashCode=function(){var n=ue(this.o9_1);return zn(n,31)+ue(this.p9_1)|0},se(Au).equals=function(n){if(this===n)return!0;if(!(n instanceof Au))return!1;var t=n instanceof Au?n:_e();return this.o9_1===t.o9_1&&this.p9_1===t.p9_1},se(Mu).v9=function(n,t){return this.w9(new Au(n,t))},se(Mu).w9=function(n){var t,r;return Df().y9(Jf((t=n,r=this,function(n){return n.s9(t.p9_1),n.t9("copy-button"),n.u9(function(n,t){return function(r){return n.q9_1(t.o9_1)}}(r,t)),lr()})),[])},se(Mu).z9=function(n){return this.w9(n instanceof Au?n:_e())},se(Mu).aa=function(n,t){return t},se(Mu).ba=function(n,t){var r=null==n||Qe(n)?n:_e();return this.aa(r,t instanceof Au?t:_e())},se(Du).ka=function(n){return function(n,t){for(var r=Ff(),i=t.ca_1,e=Nr(xt(i,10)),u=i.f();u.g();){var o,f,s=u.h();s instanceof pf?f=Ff().ga(s.fa_1):s instanceof mf?f=Fu(n,s.da_1,s.ea_1):le(),o=f,e.d(o)}return r.ha(e)}(this,n)},se(Du).z9=function(n){return this.ka(n instanceof Cf?n:_e())},se(Du).la=function(n,t){return t},se(Du).ba=function(n,t){var r=null==n||Qe(n)?n:_e();return this.la(r,t instanceof Cf?t:_e())},se(Ou).pa=function(n,t,r){return new Ou(n,t,r)},se(Ou).qa=function(n,t,r,i){return n=n===A?this.ma_1:n,t=t===A?this.na_1:t,r=r===A?this.oa_1:r,i===A?this.pa(n,t,r):i.pa.call(this,n,t,r)},se(Ou).toString=function(){return"Exception(summary="+this.ma_1+", fullText="+this.na_1+", parts="+this.oa_1+")"},se(Ou).hashCode=function(){var n=null==this.ma_1?0:this.ma_1.hashCode();return n=zn(n,31)+ue(this.na_1)|0,zn(n,31)+ee(this.oa_1)|0},se(Ou).equals=function(n){if(this===n)return!0;if(!(n instanceof Ou))return!1;var t=n instanceof Ou?n:_e();return!!oe(this.ma_1,t.ma_1)&&this.na_1===t.na_1&&!!oe(this.oa_1,t.oa_1)},se(Ru).ta=function(n,t){return new Ru(n,t)},se(Ru).ua=function(n,t,r){return n=n===A?this.ra_1:n,t=t===A?this.sa_1:t,r===A?this.ta(n,t):r.ta.call(this,n,t)},se(Ru).toString=function(){return"StackTracePart(lines="+this.ra_1+", state="+this.sa_1+")"},se(Ru).hashCode=function(){var n=ee(this.ra_1);return zn(n,31)+(null==this.sa_1?0:this.sa_1.hashCode())|0},se(Ru).equals=function(n){if(this===n)return!0;if(!(n instanceof Ru))return!1;var t=n instanceof Ru?n:_e();return!!oe(this.ra_1,t.ra_1)&&!!oe(this.sa_1,t.sa_1)},se(Hu).toString=function(){return"Error(label="+this.va_1+", docLink="+this.wa_1+")"},se(Hu).hashCode=function(){var n=ee(this.va_1);return zn(n,31)+(null==this.wa_1?0:ee(this.wa_1))|0},se(Hu).equals=function(n){if(this===n)return!0;if(!(n instanceof Hu))return!1;var t=n instanceof Hu?n:_e();return!!oe(this.va_1,t.va_1)&&!!oe(this.wa_1,t.wa_1)},se($u).toString=function(){return"Warning(label="+this.xa_1+", docLink="+this.ya_1+")"},se($u).hashCode=function(){var n=ee(this.xa_1);return zn(n,31)+(null==this.ya_1?0:ee(this.ya_1))|0},se($u).equals=function(n){if(this===n)return!0;if(!(n instanceof $u))return!1;var t=n instanceof $u?n:_e();return!!oe(this.xa_1,t.xa_1)&&!!oe(this.ya_1,t.ya_1)},se(Gu).toString=function(){return"Message(prettyText="+this.za_1+")"},se(Gu).hashCode=function(){return this.za_1.hashCode()},se(Gu).equals=function(n){if(this===n)return!0;if(!(n instanceof Gu))return!1;var t=n instanceof Gu?n:_e();return!!this.za_1.equals(t.za_1)},se(Uu).toString=function(){return"ListElement(prettyText="+this.ab_1+")"},se(Uu).hashCode=function(){return this.ab_1.hashCode()},se(Uu).equals=function(n){if(this===n)return!0;if(!(n instanceof Uu))return!1;var t=n instanceof Uu?n:_e();return!!this.ab_1.equals(t.ab_1)},se(Vu).toString=function(){return"TreeNode(prettyText="+this.bb_1+")"},se(Vu).hashCode=function(){return this.bb_1.hashCode()},se(Vu).equals=function(n){if(this===n)return!0;if(!(n instanceof Vu))return!1;var t=n instanceof Vu?n:_e();return!!this.bb_1.equals(t.bb_1)},se(Qu).toString=function(){return"Link(href="+this.cb_1+", label="+this.db_1+")"},se(Qu).hashCode=function(){var n=ue(this.cb_1);return zn(n,31)+ue(this.db_1)|0},se(Qu).equals=function(n){if(this===n)return!0;if(!(n instanceof Qu))return!1;var t=n instanceof Qu?n:_e();return this.cb_1===t.cb_1&&this.db_1===t.db_1},se(Zu).toString=function(){return"Label(text="+this.eb_1+")"},se(Zu).hashCode=function(){return ue(this.eb_1)},se(Zu).equals=function(n){if(this===n)return!0;if(!(n instanceof Zu))return!1;var t=n instanceof Zu?n:_e();return this.eb_1===t.eb_1},se(io).toString=function(){return"Info(label="+this.hb_1+", docLink="+this.ib_1+")"},se(io).hashCode=function(){var n=ee(this.hb_1);return zn(n,31)+(null==this.ib_1?0:ee(this.ib_1))|0},se(io).equals=function(n){if(this===n)return!0;if(!(n instanceof io))return!1;var t=n instanceof io?n:_e();return!!oe(this.hb_1,t.hb_1)&&!!oe(this.ib_1,t.ib_1)},se(eo).toString=function(){return"Project(path="+this.jb_1+")"},se(eo).hashCode=function(){return ue(this.jb_1)},se(eo).equals=function(n){if(this===n)return!0;if(!(n instanceof eo))return!1;var t=n instanceof eo?n:_e();return this.jb_1===t.jb_1},se(uo).toString=function(){return"Task(path="+this.kb_1+", type="+this.lb_1+")"},se(uo).hashCode=function(){var n=ue(this.kb_1);return zn(n,31)+ue(this.lb_1)|0},se(uo).equals=function(n){if(this===n)return!0;if(!(n instanceof uo))return!1;var t=n instanceof uo?n:_e();return this.kb_1===t.kb_1&&this.lb_1===t.lb_1},se(oo).toString=function(){return"TaskPath(path="+this.mb_1+")"},se(oo).hashCode=function(){return ue(this.mb_1)},se(oo).equals=function(n){if(this===n)return!0;if(!(n instanceof oo))return!1;var t=n instanceof oo?n:_e();return this.mb_1===t.mb_1},se(fo).toString=function(){return"Bean(type="+this.nb_1+")"},se(fo).hashCode=function(){return ue(this.nb_1)},se(fo).equals=function(n){if(this===n)return!0;if(!(n instanceof fo))return!1;var t=n instanceof fo?n:_e();return this.nb_1===t.nb_1},se(so).toString=function(){return"SystemProperty(name="+this.ob_1+")"},se(so).hashCode=function(){return ue(this.ob_1)},se(so).equals=function(n){if(this===n)return!0;if(!(n instanceof so))return!1;var t=n instanceof so?n:_e();return this.ob_1===t.ob_1},se(co).toString=function(){return"Property(kind="+this.pb_1+", name="+this.qb_1+", owner="+this.rb_1+")"},se(co).hashCode=function(){var n=ue(this.pb_1);return n=zn(n,31)+ue(this.qb_1)|0,zn(n,31)+ue(this.rb_1)|0},se(co).equals=function(n){if(this===n)return!0;if(!(n instanceof co))return!1;var t=n instanceof co?n:_e();return this.pb_1===t.pb_1&&this.qb_1===t.qb_1&&this.rb_1===t.rb_1},se(ao).toString=function(){return"BuildLogic(location="+this.sb_1+")"},se(ao).hashCode=function(){return ue(this.sb_1)},se(ao).equals=function(n){if(this===n)return!0;if(!(n instanceof ao))return!1;var t=n instanceof ao?n:_e();return this.sb_1===t.sb_1},se(ho).toString=function(){return"BuildLogicClass(type="+this.tb_1+")"},se(ho).hashCode=function(){return ue(this.tb_1)},se(ho).equals=function(n){if(this===n)return!0;if(!(n instanceof ho))return!1;var t=n instanceof ho?n:_e();return this.tb_1===t.tb_1},se(vo).zb=function(){return this.yb_1},se(vo).toString=function(){return"TaskTreeIntent(delegate="+this.yb_1+")"},se(vo).hashCode=function(){return ee(this.yb_1)},se(vo).equals=function(n){if(this===n)return!0;if(!(n instanceof vo))return!1;var t=n instanceof vo?n:_e();return!!oe(this.yb_1,t.yb_1)},se(go).zb=function(){return this.ac_1},se(go).toString=function(){return"MessageTreeIntent(delegate="+this.ac_1+")"},se(go).hashCode=function(){return ee(this.ac_1)},se(go).equals=function(n){if(this===n)return!0;if(!(n instanceof go))return!1;var t=n instanceof go?n:_e();return!!oe(this.ac_1,t.ac_1)},se(wo).zb=function(){return this.bc_1},se(wo).toString=function(){return"InputTreeIntent(delegate="+this.bc_1+")"},se(wo).hashCode=function(){return ee(this.bc_1)},se(wo).equals=function(n){if(this===n)return!0;if(!(n instanceof wo))return!1;var t=n instanceof wo?n:_e();return!!oe(this.bc_1,t.bc_1)},se(bo).zb=function(){return this.cc_1},se(bo).toString=function(){return"IncompatibleTaskTreeIntent(delegate="+this.cc_1+")"},se(bo).hashCode=function(){return ee(this.cc_1)},se(bo).equals=function(n){if(this===n)return!0;if(!(n instanceof bo))return!1;var t=n instanceof bo?n:_e();return!!oe(this.cc_1,t.cc_1)},se(po).toString=function(){return"SetTab(tab="+this.dc_1+")"},se(po).hashCode=function(){return this.dc_1.hashCode()},se(po).equals=function(n){if(this===n)return!0;if(!(n instanceof po))return!1;var t=n instanceof po?n:_e();return!!this.dc_1.equals(t.dc_1)},se(mo).mc=function(n,t,r,i,e,u,o,f){return new mo(n,t,r,i,e,u,o,f)},se(mo).nc=function(n,t,r,i,e,u,o,f,s){return n=n===A?this.ec_1:n,t=t===A?this.fc_1:t,r=r===A?this.gc_1:r,i=i===A?this.hc_1:i,e=e===A?this.ic_1:e,u=u===A?this.jc_1:u,o=o===A?this.kc_1:o,f=f===A?this.lc_1:f,s===A?this.mc(n,t,r,i,e,u,o,f):s.mc.call(this,n,t,r,i,e,u,o,f)},se(mo).toString=function(){return"Model(heading="+this.ec_1+", summary="+this.fc_1+", learnMore="+this.gc_1+", messageTree="+this.hc_1+", locationTree="+this.ic_1+", inputTree="+this.jc_1+", incompatibleTaskTree="+this.kc_1+", tab="+this.lc_1+")"},se(mo).hashCode=function(){var n=this.ec_1.hashCode();return n=zn(n,31)+ee(this.fc_1)|0,n=zn(n,31)+this.gc_1.hashCode()|0,n=zn(n,31)+this.hc_1.hashCode()|0,n=zn(n,31)+this.ic_1.hashCode()|0,n=zn(n,31)+this.jc_1.hashCode()|0,n=zn(n,31)+this.kc_1.hashCode()|0,zn(n,31)+this.lc_1.hashCode()|0},se(mo).equals=function(n){if(this===n)return!0;if(!(n instanceof mo))return!1;var t=n instanceof mo?n:_e();return!!(this.ec_1.equals(t.ec_1)&&oe(this.fc_1,t.fc_1)&&this.gc_1.equals(t.gc_1)&&this.hc_1.equals(t.hc_1)&&this.ic_1.equals(t.ic_1)&&this.jc_1.equals(t.jc_1)&&this.kc_1.equals(t.kc_1)&&this.lc_1.equals(t.lc_1))},se(Uo).gd=function(n,t){var r,i;return n instanceof vo?r=t.nc(A,A,A,A,_s().id(n.yb_1,t.ic_1)):n instanceof go?r=t.nc(A,A,A,_s().id(n.ac_1,t.hc_1)):n instanceof wo?r=t.nc(A,A,A,A,A,_s().id(n.bc_1,t.jc_1)):n instanceof bo?r=t.nc(A,A,A,A,A,A,_s().id(n.cc_1,t.kc_1)):n instanceof qc?r=function(n,t,r,i){var e;return r instanceof go?e=n.nc(A,A,A,mc(n.hc_1,r,i)):r instanceof vo?e=n.nc(A,A,A,A,mc(n.ic_1,r,i)):r instanceof wo?e=n.nc(A,A,A,A,A,mc(n.jc_1,r,i)):r instanceof bo?e=n.nc(A,A,A,A,A,A,mc(n.kc_1,r,i)):(console.error("Unhandled tree intent: "+r),e=n),e}(t,0,n.xc_1,(i=n,function(n){var t;if(!(n instanceof Ou))throw fu(ie("Failed requirement."));for(var r=n.oa_1,e=i.wc_1,u=Nr(xt(r,10)),o=0,f=r.f();f.g();){var s,c,a=f.h(),h=o;if(o=h+1|0,e===wr(h)){var l=a.sa_1;c=a.ua(A,null==l?null:l.ad())}else c=a;s=c,u.d(s)}return t=u,n.qa(A,A,t)})):n instanceof kc?(window.navigator.clipboard.writeText(n.hd_1),r=t):n instanceof po?r=t.nc(A,A,A,A,A,A,A,n.dc_1):(console.error("Unhandled intent: "+n),r=t),r},se(Uo).ba=function(n,t){var r=n instanceof Bc?n:_e();return this.gd(r,t instanceof mo?t:_e())},se(Uo).jd=function(n){return Af().y9(Jf(To),[qo(0,n),Bo(0,n)])},se(Uo).z9=function(n){return this.jd(n instanceof mo?n:_e())},se(Zo).toString=function(){return"ImportedProblem(problem="+this.kd_1+", message="+this.ld_1+", trace="+this.md_1+")"},se(Zo).hashCode=function(){var n=ee(this.kd_1);return n=zn(n,31)+this.ld_1.hashCode()|0,zn(n,31)+ee(this.md_1)|0},se(Zo).equals=function(n){if(this===n)return!0;if(!(n instanceof Zo))return!1;var t=n instanceof Zo?n:_e();return!!oe(this.kd_1,t.kd_1)&&!!this.ld_1.equals(t.ld_1)&&!!oe(this.md_1,t.md_1)},se(ff).ud=function(n,t){return this.td_1(n,t)},se(ff).compare=function(n,t){return this.ud(n,t)},se(bf).toString=function(){return"LearnMore(text="+this.sc_1+", documentationLink="+this.tc_1+")"},se(bf).hashCode=function(){var n=ue(this.sc_1);return zn(n,31)+ue(this.tc_1)|0},se(bf).equals=function(n){if(this===n)return!0;if(!(n instanceof bf))return!1;var t=n instanceof bf?n:_e();return this.sc_1===t.sc_1&&this.tc_1===t.tc_1},se(pf).toString=function(){return"Text(text="+this.fa_1+")"},se(pf).hashCode=function(){return ue(this.fa_1)},se(pf).equals=function(n){if(this===n)return!0;if(!(n instanceof pf))return!1;var t=n instanceof pf?n:_e();return this.fa_1===t.fa_1},se(mf).toString=function(){return"Reference(name="+this.da_1+", clipboardString="+this.ea_1+")"},se(mf).hashCode=function(){var n=ue(this.da_1);return zn(n,31)+ue(this.ea_1)|0},se(mf).equals=function(n){if(this===n)return!0;if(!(n instanceof mf))return!1;var t=n instanceof mf?n:_e();return this.da_1===t.da_1&&this.ea_1===t.ea_1},se(yf).ed=function(n){return this.dd_1.d(new pf(n)),this},se(yf).xd=function(n,t){return this.dd_1.d(new mf(n,t)),this},se(yf).fd=function(n,t,r){return t=t===A?n:t,r===A?this.xd(n,t):r.xd.call(this,n,t)},se(yf).j5=function(){return new Cf(Rn(this.dd_1))},se(qf).rd=function(n){return new Cf(gr(new pf(n)))},se(qf).qd=function(n){var t=new yf;return n(t),t.j5()},se(Cf).vd=function(n){return new Cf(n)},se(Cf).toString=function(){return"PrettyText(fragments="+this.ca_1+")"},se(Cf).hashCode=function(){return ee(this.ca_1)},se(Cf).equals=function(n){if(this===n)return!0;if(!(n instanceof Cf))return!1;var t=n instanceof Cf?n:_e();return!!oe(this.ca_1,t.ca_1)},se(xf).sd=function(n){return function(n){for(var t=Gr(),r=n.f();r.g();)for(var i=t,e=r.h().f();e.g();){var u,o=e.h(),f=i,s=f.v1(o);if(null==s){var c=Gr();f.h5(o,c),u=c}else u=s;i=u instanceof Vr?u:_e()}return t}(n)},se(Sf).toString=function(){return"Trie(nestedMaps="+this.wd_1+")"},se(Sf).hashCode=function(){return ee(this.wd_1)},se(Sf).equals=function(n){return function(n,t){return t instanceof Sf&&!!oe(n,t instanceof Sf?t.wd_1:_e())}(this.wd_1,n)},se(Uf).ga=function(n){return Qf().yd(this.x9_1,A,n)},se(Uf).ha=function(n){return Qf().yd(this.x9_1,A,A,n)},se(Uf).ja=function(n){return Qf().yd(this.x9_1,A,A,nu(n))},se(Uf).y9=function(n,t){return Qf().yd(this.x9_1,n,A,nu(t))},se(Uf).zd=function(n,t){return Qf().yd(this.x9_1,n,A,t)},se(Uf).fb=function(n,t){return Qf().yd(this.x9_1,n,t)},se(Uf).rc=function(n,t){return Qf().yd(this.x9_1,A,n,nu(t))},se(Uf).toString=function(){return"ViewFactory(elementName="+this.x9_1+")"},se(Uf).hashCode=function(){return ue(this.x9_1)},se(Uf).equals=function(n){if(this===n)return!0;if(!(n instanceof Uf))return!1;var t=n instanceof Uf?n:_e();return this.x9_1===t.x9_1},se(Vf).ae=function(n,t,r,i){return new Wf(n,t,r,i)},se(Vf).yd=function(n,t,r,i,e){return t=t===A?pt():t,r=r===A?null:r,i=i===A?pt():i,e===A?this.ae(n,t,r,i):e.ae.call(this,n,t,r,i)},se(Wf).toString=function(){return"Element(elementName="+this.be_1+", attributes="+this.ce_1+", innerText="+this.de_1+", children="+this.ee_1+")"},se(Wf).hashCode=function(){var n=ue(this.be_1);return n=zn(n,31)+ee(this.ce_1)|0,n=zn(n,31)+(null==this.de_1?0:ue(this.de_1))|0,zn(n,31)+ee(this.ee_1)|0},se(Wf).equals=function(n){if(this===n)return!0;if(!(n instanceof Wf))return!1;var t=n instanceof Wf?n:_e();return this.be_1===t.be_1&&!!oe(this.ce_1,t.ce_1)&&this.de_1==t.de_1&&!!oe(this.ee_1,t.ee_1)},se(ns).u9=function(n){return this.r9_1(new ts("click",n))},se(ns).t9=function(n){return this.r9_1(new rs(n))},se(ns).gb=function(n){for(var t=0,r=n.length;t<r;){var i=n[t];t=t+1|0,this.r9_1(new rs(i))}return lr()},se(ns).s9=function(n){return this.r9_1(new is("title",n))},se(ns).bd=function(n){return this.r9_1(new is("href",n))},se(ss).oe=function(){return this.ne_1},se(ss).toString=function(){return"Toggle(focus="+this.ne_1+")"},se(ss).hashCode=function(){return ee(this.ne_1)},se(ss).equals=function(n){if(this===n)return!0;if(!(n instanceof ss))return!1;var t=n instanceof ss?n:_e();return!!oe(this.ne_1,t.ne_1)},se(cs).pe=function(n,t){return this.re(n.qe((r=t,function(n){return n.me(r(n.ub_1))})));var r},se(cs).re=function(n){return new cs(n)},se(cs).toString=function(){return"Model(tree="+this.xb_1+")"},se(cs).hashCode=function(){return this.xb_1.hashCode()},se(cs).equals=function(n){if(this===n)return!0;if(!(n instanceof cs))return!1;var t=n instanceof cs?n:_e();return!!this.xb_1.equals(t.xb_1)},se(ls).id=function(n,t){var r;if(n instanceof ss){var i=n.oe();r=t.re(i.qe(hs))}else le();return r},se(ds).cd=function(){return this.ve_1},se(ds).we=function(){return 0},se(ds).qe=function(n){return n(this.ve_1)},se(ds).toString=function(){return"Original(tree="+this.ve_1+")"},se(ds).hashCode=function(){return this.ve_1.hashCode()},se(ds).equals=function(n){if(this===n)return!0;if(!(n instanceof ds))return!1;var t=n instanceof ds?n:_e();return!!this.ve_1.equals(t.ve_1)},se(gs).cd=function(){return this.ue_1},se(gs).we=function(){return this.se_1.we()+1|0},se(gs).qe=function(n){return this.se_1.qe((t=this,r=n,function(n){for(var i,e=n.vb_1,u=t.te_1,o=Nr(xt(e,10)),f=0,s=e.f();s.g();){var c,a=s.h(),h=f;f=h+1|0,c=u===wr(h)?r(a):a,o.d(c)}return i=o,n.me(A,i)}));var t,r},se(gs).toString=function(){return"Child(parent="+this.se_1+", index="+this.te_1+", tree="+this.ue_1+")"},se(gs).hashCode=function(){var n=ee(this.se_1);return n=zn(n,31)+this.te_1|0,zn(n,31)+this.ue_1.hashCode()|0},se(gs).equals=function(n){if(this===n)return!0;if(!(n instanceof gs))return!1;var t=n instanceof gs?n:_e();return!!oe(this.se_1,t.se_1)&&this.te_1===t.te_1&&!!this.ue_1.equals(t.ue_1)},se(ws).ad=function(){var n;switch(this.q8_1){case 0:n=ms();break;case 1:n=ps();break;default:le()}return n},se(bs).vc=function(){var n,t;return Jn(On(Oe(0,this.cd().vb_1.k()-1|0)),(n=this,(t=function(t){return n.xe(t)}).callableName="child",t))},se(bs).xe=function(n){return new gs(this,n,this.cd().vb_1.j(n))},se(ks).uc=function(){return new ds(this)},se(ks).ye=function(){return!this.vb_1.i()},se(ks).ze=function(n,t,r){return new ks(n,t,r)},se(ks).me=function(n,t,r,i){return n=n===A?this.ub_1:n,t=t===A?this.vb_1:t,r=r===A?this.wb_1:r,i===A?this.ze(n,t,r):i.ze.call(this,n,t,r)},se(ks).toString=function(){return"Tree(label="+this.ub_1+", children="+this.vb_1+", state="+this.wb_1+")"},se(ks).hashCode=function(){var n=null==this.ub_1?0:ee(this.ub_1);return n=zn(n,31)+ee(this.vb_1)|0,zn(n,31)+this.wb_1.hashCode()|0},se(ks).equals=function(n){if(this===n)return!0;if(!(n instanceof ks))return!1;var t=n instanceof ks?n:_e();return!!oe(this.ub_1,t.ub_1)&&!!oe(this.vb_1,t.vb_1)&&!!this.wb_1.equals(t.wb_1)},se(Cs).toString=function(){return"ProblemIdElement(name="+this.df_1+", displayName="+this.ef_1+")"},se(Cs).hashCode=function(){var n=ue(this.df_1);return zn(n,31)+ue(this.ef_1)|0},se(Cs).equals=function(n){if(this===n)return!0;if(!(n instanceof Cs))return!1;var t=n instanceof Cs?n:_e();return this.df_1===t.df_1&&this.ef_1===t.ef_1},se(xs).toString=function(){return"ProblemSummary(problemId="+this.ff_1+", count="+this.gf_1+")"},se(xs).hashCode=function(){var n=ee(this.ff_1);return zn(n,31)+this.gf_1|0},se(xs).equals=function(n){if(this===n)return!0;if(!(n instanceof xs))return!1;var t=n instanceof xs?n:_e();return!!oe(this.ff_1,t.ff_1)&&this.gf_1===t.gf_1},se(Is).toString=function(){return"ProblemNodeGroup(tree="+this.hf_1+", children="+this.if_1+", childGroups="+this.jf_1+", id="+this.kf_1+")"},se(Is).hashCode=function(){var n=this.hf_1.hashCode();return n=zn(n,31)+ee(this.if_1)|0,n=zn(n,31)+ee(this.jf_1)|0,zn(n,31)+this.kf_1|0},se(Is).equals=function(n){if(this===n)return!0;if(!(n instanceof Is))return!1;var t=n instanceof Is?n:_e();return!!this.hf_1.equals(t.hf_1)&&!!oe(this.if_1,t.if_1)&&!!oe(this.jf_1,t.jf_1)&&this.kf_1===t.kf_1},se(Us).toString=function(){return"Text(text="+this.lf_1+")"},se(Us).hashCode=function(){return ue(this.lf_1)},se(Us).equals=function(n){if(this===n)return!0;if(!(n instanceof Us))return!1;var t=n instanceof Us?n:_e();return this.lf_1===t.lf_1},se(Vs).toString=function(){return"ProblemIdNode(prettyText="+this.mf_1+", separator="+this.nf_1+")"},se(Vs).hashCode=function(){var n=this.mf_1.hashCode();return zn(n,31)+(0|this.nf_1)|0},se(Vs).equals=function(n){if(this===n)return!0;if(!(n instanceof Vs))return!1;var t=n instanceof Vs?n:_e();return!!this.mf_1.equals(t.mf_1)&&this.nf_1===t.nf_1},se(Qs).toString=function(){return"Advice(label="+this.of_1+", docLink="+this.pf_1+")"},se(Qs).hashCode=function(){var n=ee(this.of_1);return zn(n,31)+(null==this.pf_1?0:ee(this.pf_1))|0},se(Qs).equals=function(n){if(this===n)return!0;if(!(n instanceof Qs))return!1;var t=n instanceof Qs?n:_e();return!!oe(this.of_1,t.of_1)&&!!oe(this.pf_1,t.pf_1)},se(Ys).zb=function(){return this.qf_1},se(Ys).toString=function(){return"MessageTreeIntent(delegate="+this.qf_1+")"},se(Ys).hashCode=function(){return ee(this.qf_1)},se(Ys).equals=function(n){if(this===n)return!0;if(!(n instanceof Ys))return!1;var t=n instanceof Ys?n:_e();return!!oe(this.qf_1,t.qf_1)},se(Ws).zb=function(){return this.rf_1},se(Ws).toString=function(){return"ProblemIdTreeIntent(delegate="+this.rf_1+")"},se(Ws).hashCode=function(){return ee(this.rf_1)},se(Ws).equals=function(n){if(this===n)return!0;if(!(n instanceof Ws))return!1;var t=n instanceof Ws?n:_e();return!!oe(this.rf_1,t.rf_1)},se(Ks).zb=function(){return this.sf_1},se(Ks).toString=function(){return"FileLocationTreeIntent(delegate="+this.sf_1+")"},se(Ks).hashCode=function(){return ee(this.sf_1)},se(Ks).equals=function(n){if(this===n)return!0;if(!(n instanceof Ks))return!1;var t=n instanceof Ks?n:_e();return!!oe(this.sf_1,t.sf_1)},se(Xs).toString=function(){return"SetTab(tab="+this.tf_1+")"},se(Xs).hashCode=function(){return this.tf_1.hashCode()},se(Xs).equals=function(n){if(this===n)return!0;if(!(n instanceof Xs))return!1;var t=n instanceof Xs?n:_e();return!!this.tf_1.equals(t.tf_1)},se(Js).cg=function(n,t,r,i,e,u,o,f){return new Js(n,t,r,i,e,u,o,f)},se(Js).dg=function(n,t,r,i,e,u,o,f,s){return n=n===A?this.uf_1:n,t=t===A?this.vf_1:t,r=r===A?this.wf_1:r,i=i===A?this.xf_1:i,e=e===A?this.yf_1:e,u=u===A?this.zf_1:u,o=o===A?this.ag_1:o,f=f===A?this.bg_1:f,s===A?this.cg(n,t,r,i,e,u,o,f):s.cg.call(this,n,t,r,i,e,u,o,f)},se(Js).toString=function(){return"Model(heading="+this.uf_1+", summary="+this.vf_1+", learnMore="+this.wf_1+", messageTree="+this.xf_1+", problemIdTree="+this.yf_1+", fileLocationTree="+this.zf_1+", problemCount="+this.ag_1+", tab="+this.bg_1+")"},se(Js).hashCode=function(){var n=this.uf_1.hashCode();return n=zn(n,31)+ee(this.vf_1)|0,n=zn(n,31)+this.wf_1.hashCode()|0,n=zn(n,31)+this.xf_1.hashCode()|0,n=zn(n,31)+this.yf_1.hashCode()|0,n=zn(n,31)+this.zf_1.hashCode()|0,n=zn(n,31)+this.ag_1|0,zn(n,31)+this.bg_1.hashCode()|0},se(Js).equals=function(n){if(this===n)return!0;if(!(n instanceof Js))return!1;var t=n instanceof Js?n:_e();return!!(this.uf_1.equals(t.uf_1)&&oe(this.vf_1,t.vf_1)&&this.wf_1.equals(t.wf_1)&&this.xf_1.equals(t.xf_1)&&this.yf_1.equals(t.yf_1)&&this.zf_1.equals(t.zf_1)&&this.ag_1===t.ag_1&&this.bg_1.equals(t.bg_1))},se(bc).eg=function(n,t){var r,i;return n instanceof Ks?r=t.dg(A,A,A,A,A,_s().id(n.sf_1,t.zf_1)):n instanceof Ws?r=t.dg(A,A,A,A,_s().id(n.rf_1,t.yf_1)):n instanceof Ys?r=t.dg(A,A,A,_s().id(n.qf_1,t.xf_1)):n instanceof qc?r=function
Download .txt
gitextract_p937gcv0/

├── .gitignore
├── .metadata
├── LICENSE
├── README-EN.md
├── README.md
├── analysis_options.yaml
├── android/
│   ├── .gitignore
│   ├── app/
│   │   ├── build.gradle.kts
│   │   ├── proguard-rules.pro
│   │   └── src/
│   │       ├── debug/
│   │       │   └── AndroidManifest.xml
│   │       ├── main/
│   │       │   ├── AndroidManifest.xml
│   │       │   ├── kotlin/
│   │       │   │   └── com/
│   │       │   │       └── toly1994/
│   │       │   │           └── flutter_unit/
│   │       │   │               └── MainActivity.kt
│   │       │   └── res/
│   │       │       ├── drawable/
│   │       │       │   └── launch_background.xml
│   │       │       ├── drawable-v21/
│   │       │       │   └── launch_background.xml
│   │       │       ├── values/
│   │       │       │   └── styles.xml
│   │       │       └── values-night/
│   │       │           └── styles.xml
│   │       └── profile/
│   │           └── AndroidManifest.xml
│   ├── build/
│   │   └── reports/
│   │       └── problems/
│   │           └── problems-report.html
│   ├── build.gradle.kts
│   ├── gradle/
│   │   └── wrapper/
│   │       └── gradle-wrapper.properties
│   ├── gradle.properties
│   └── settings.gradle.kts
├── assets/
│   ├── data/
│   │   ├── gallery_info.json
│   │   ├── packages/
│   │   │   └── data.json
│   │   └── web/
│   │       ├── node.json
│   │       └── widget.json
│   └── version.json
├── desiredFileName.txt
├── devtools_options.yaml
├── doc/
│   ├── development/
│   │   └── architecture.md
│   └── version/
│       ├── 3.1.0.md
│       └── 3.2.0.md
├── ios/
│   ├── .gitignore
│   ├── Flutter/
│   │   ├── AppFrameworkInfo.plist
│   │   ├── Debug.xcconfig
│   │   └── Release.xcconfig
│   ├── Podfile
│   ├── Runner/
│   │   ├── AppDelegate.swift
│   │   ├── Assets.xcassets/
│   │   │   ├── AppIcon.appiconset/
│   │   │   │   └── Contents.json
│   │   │   └── LaunchImage.imageset/
│   │   │       ├── Contents.json
│   │   │       └── README.md
│   │   ├── Base.lproj/
│   │   │   ├── LaunchScreen.storyboard
│   │   │   └── Main.storyboard
│   │   ├── Info.plist
│   │   └── Runner-Bridging-Header.h
│   ├── 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
├── l10n.yaml
├── lib/
│   ├── main.dart
│   └── src/
│       ├── flutter_unit.dart
│       ├── l10n/
│       │   ├── arb/
│       │   │   ├── app_en.arb
│       │   │   └── app_zh.arb
│       │   ├── gen/
│       │   │   ├── app_l10n.dart
│       │   │   ├── app_l10n_en.dart
│       │   │   └── app_l10n_zh.dart
│       │   └── locale_provider.dart
│       ├── navigation/
│       │   ├── model/
│       │   │   └── app_tab.dart
│       │   ├── router/
│       │   │   ├── app_route.dart
│       │   │   ├── system/
│       │   │   │   ├── app.dart
│       │   │   │   ├── global.dart
│       │   │   │   └── settings.dart
│       │   │   └── widgets/
│       │   │       ├── collection_route.dart
│       │   │       └── widgets_route.dart
│       │   └── view/
│       │       ├── app_bloc_provider.dart
│       │       ├── desktop/
│       │       │   ├── flutter_unit_desk_navigation.dart
│       │       │   ├── locale_change_menu.dart
│       │       │   ├── menu_bar_leading.dart
│       │       │   ├── menu_bar_tail.dart
│       │       │   ├── theme_model_switch_icon.dart
│       │       │   ├── toly_unit_menu_cell.dart
│       │       │   └── unit_shortcuts_scope.dart
│       │       └── mobile/
│       │           ├── carousel.dart
│       │           ├── news.dart
│       │           ├── pure_bottom_bar.dart
│       │           └── unit_navigation.dart
│       └── starter/
│           ├── bridge/
│           │   └── unit_bridge.dart
│           ├── fx_application.dart
│           ├── start_repository.dart
│           └── view/
│               ├── error/
│               │   └── app_start_error.dart
│               └── splash/
│                   ├── Flutter_unit_splash.dart
│                   └── flutter_unit_text.dart
├── linux/
│   ├── .gitignore
│   ├── CMakeLists.txt
│   ├── flutter/
│   │   ├── CMakeLists.txt
│   │   ├── generated_plugin_registrant.cc
│   │   ├── generated_plugin_registrant.h
│   │   └── generated_plugins.cmake
│   ├── main.cc
│   ├── my_application.cc
│   └── my_application.h
├── macos/
│   ├── .gitignore
│   ├── Flutter/
│   │   ├── Flutter-Debug.xcconfig
│   │   ├── Flutter-Release.xcconfig
│   │   └── GeneratedPluginRegistrant.swift
│   ├── Podfile
│   ├── Runner/
│   │   ├── AppDelegate.swift
│   │   ├── Assets.xcassets/
│   │   │   └── AppIcon.appiconset/
│   │   │       └── Contents.json
│   │   ├── Base.lproj/
│   │   │   └── MainMenu.xib
│   │   ├── Configs/
│   │   │   ├── AppInfo.xcconfig
│   │   │   ├── Debug.xcconfig
│   │   │   ├── Release.xcconfig
│   │   │   └── Warnings.xcconfig
│   │   ├── DebugProfile.entitlements
│   │   ├── Info.plist
│   │   ├── MainFlutterWindow.swift
│   │   └── Release.entitlements
│   ├── Runner.xcodeproj/
│   │   ├── project.pbxproj
│   │   ├── project.xcworkspace/
│   │   │   └── xcshareddata/
│   │   │       └── IDEWorkspaceChecks.plist
│   │   └── xcshareddata/
│   │       └── xcschemes/
│   │           └── Runner.xcscheme
│   └── Runner.xcworkspace/
│       ├── contents.xcworkspacedata
│       └── xcshareddata/
│           └── IDEWorkspaceChecks.plist
├── modules/
│   ├── basic_system/
│   │   ├── app/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── app/
│   │   │   │   │   ├── action/
│   │   │   │   │   │   ├── action.dart
│   │   │   │   │   │   └── url.dart
│   │   │   │   │   ├── cons/
│   │   │   │   │   │   ├── cons.dart
│   │   │   │   │   │   ├── global_value.dart
│   │   │   │   │   │   ├── path_unit.dart
│   │   │   │   │   │   ├── sp.dart
│   │   │   │   │   │   └── str_unit.dart
│   │   │   │   │   ├── res/
│   │   │   │   │   │   └── toly_icon.dart
│   │   │   │   │   ├── router/
│   │   │   │   │   │   └── app_route.dart
│   │   │   │   │   ├── style/
│   │   │   │   │   │   ├── behavior/
│   │   │   │   │   │   │   └── no_scroll_behavior.dart
│   │   │   │   │   │   ├── gap.dart
│   │   │   │   │   │   ├── shape/
│   │   │   │   │   │   │   ├── coupon_shape_border.dart
│   │   │   │   │   │   │   └── techno_shape.dart
│   │   │   │   │   │   ├── unit_color.dart
│   │   │   │   │   │   └── unit_text_style.dart
│   │   │   │   │   └── theme/
│   │   │   │   │       ├── app_theme.dart
│   │   │   │   │       └── size_unit.dart
│   │   │   │   ├── app.dart
│   │   │   │   ├── app_config/
│   │   │   │   │   ├── app_config.dart
│   │   │   │   │   ├── bloc/
│   │   │   │   │   │   ├── bloc.dart
│   │   │   │   │   │   └── state.dart
│   │   │   │   │   └── repository/
│   │   │   │   │       └── repository.dart
│   │   │   │   ├── event/
│   │   │   │   │   └── api.dart
│   │   │   │   ├── http/
│   │   │   │   │   ├── flutter_unit/
│   │   │   │   │   │   ├── api/
│   │   │   │   │   │   │   └── upgrade_api.dart
│   │   │   │   │   │   └── unit_host.dart
│   │   │   │   │   ├── http.dart
│   │   │   │   │   ├── register.dart
│   │   │   │   │   └── science/
│   │   │   │   │       ├── science_host.dart
│   │   │   │   │       └── science_rep_interceptor.dart
│   │   │   │   ├── news/
│   │   │   │   │   ├── cacheable.dart
│   │   │   │   │   └── news_bloc.dart
│   │   │   │   └── view/
│   │   │   │       ├── about/
│   │   │   │       │   ├── about_app_page.dart
│   │   │   │       │   ├── about_me_page.dart
│   │   │   │       │   └── version_info.dart
│   │   │   │       ├── account/
│   │   │   │       │   └── desk/
│   │   │   │       │       ├── desk_account_page.dart
│   │   │   │       │       ├── sliver_cellection_panel.dart
│   │   │   │       │       ├── sliver_list_panel.dart
│   │   │   │       │       ├── sliver_share_panel.dart
│   │   │   │       │       └── user_header.dart
│   │   │   │       ├── data_manage/
│   │   │   │       │   └── data_manage_page.dart
│   │   │   │       ├── setting/
│   │   │   │       │   ├── app_style_setting.dart
│   │   │   │       │   ├── code_style_setting.dart
│   │   │   │       │   ├── font_setting.dart
│   │   │   │       │   ├── item_style_setting.dart
│   │   │   │       │   ├── language_setting.dart
│   │   │   │       │   ├── setting_page.dart
│   │   │   │       │   ├── theme_color_setting.dart
│   │   │   │       │   └── theme_model_setting.dart
│   │   │   │       ├── unit_todo/
│   │   │   │       │   ├── attr_unit_page.dart
│   │   │   │       │   ├── layout_unit_page.dart
│   │   │   │       │   ├── paint_unit_page.dart
│   │   │   │       │   └── point_unit_page.dart
│   │   │   │       ├── view.dart
│   │   │   │       └── wrapper/
│   │   │   │           └── overlay_tool_wrapper.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── app_config_test.dart
│   │   ├── authentication/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── authentication.dart
│   │   │   │   ├── blocs/
│   │   │   │   │   ├── authentic/
│   │   │   │   │   │   ├── bloc.dart
│   │   │   │   │   │   ├── event.dart
│   │   │   │   │   │   └── state.dart
│   │   │   │   │   ├── register/
│   │   │   │   │   │   ├── bloc.dart
│   │   │   │   │   │   ├── event.dart
│   │   │   │   │   │   └── state.dart
│   │   │   │   │   └── user/
│   │   │   │   │       ├── bloc.dart
│   │   │   │   │       └── state.dart
│   │   │   │   ├── models/
│   │   │   │   │   └── user.dart
│   │   │   │   ├── repository/
│   │   │   │   │   ├── auth_repository.dart
│   │   │   │   │   └── impl/
│   │   │   │   │       └── http_auth_repository.dart
│   │   │   │   └── views/
│   │   │   │       ├── authentic_widget.dart
│   │   │   │       └── mobile/
│   │   │   │           ├── login/
│   │   │   │           │   ├── login_form.dart
│   │   │   │           │   └── login_page.dart
│   │   │   │           ├── register/
│   │   │   │           │   ├── arc_clipper.dart
│   │   │   │           │   ├── register_page.dart
│   │   │   │           │   └── send_code.dart
│   │   │   │           └── user/
│   │   │   │               ├── page_item.dart
│   │   │   │               ├── support_me.dart
│   │   │   │               ├── unit_drawer_header.dart
│   │   │   │               ├── user_account.dart
│   │   │   │               └── user_page.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── authentication_test.dart
│   │   ├── components/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── components.dart
│   │   │   │   ├── flutter_ui/
│   │   │   │   │   ├── diy_flexible_space_bar.dart
│   │   │   │   │   ├── flutter_ui.dart
│   │   │   │   │   ├── no_div_expansion_tile.dart
│   │   │   │   │   └── toly_date_picker.dart
│   │   │   │   └── project_ui/
│   │   │   │       ├── default/
│   │   │   │       │   ├── empty_search_page.dart
│   │   │   │       │   ├── empty_shower.dart
│   │   │   │       │   ├── error_page.dart
│   │   │   │       │   ├── error_shower.dart
│   │   │   │       │   ├── loading_shower.dart
│   │   │   │       │   └── no_more_widget.dart
│   │   │   │       ├── project_ui.dart
│   │   │   │       ├── refresh/
│   │   │   │       │   ├── refresh.dart
│   │   │   │       │   ├── refresh_config_wrapper.dart
│   │   │   │       │   └── toly_refresh_indicator.dart
│   │   │   │       ├── time_line/
│   │   │   │       │   ├── flutter_unit_time_line.dart
│   │   │   │       │   └── model/
│   │   │   │       │       └── time_node.dart
│   │   │   │       ├── top_bar/
│   │   │   │       │   ├── desk_account_top_bar.dart
│   │   │   │       │   ├── desk_knowledge_top_bar.dart
│   │   │   │       │   ├── desk_simple_top_bar.dart
│   │   │   │       │   └── desk_tab_top_bar.dart
│   │   │   │       ├── unit_app_bar.dart
│   │   │   │       └── wrapper/
│   │   │   │           └── honour_wrapper.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── components_test.dart
│   │   ├── fx_updater/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── bloc/
│   │   │   │   │   ├── bloc.dart
│   │   │   │   │   ├── event.dart
│   │   │   │   │   └── state.dart
│   │   │   │   ├── fx_updater.dart
│   │   │   │   ├── repository/
│   │   │   │   │   ├── api/
│   │   │   │   │   │   └── upgrade_api.dart
│   │   │   │   │   └── model/
│   │   │   │   │       └── app_info.dart
│   │   │   │   ├── strategy/
│   │   │   │   │   ├── android_strategy.dart
│   │   │   │   │   ├── desktop_strategy.dart
│   │   │   │   │   ├── download_mixin.dart
│   │   │   │   │   ├── macos_strategy.dart
│   │   │   │   │   └── update_strategy.dart
│   │   │   │   └── views/
│   │   │   │       ├── app_update_panel.dart
│   │   │   │       ├── dialog/
│   │   │   │       │   ├── top_bar.dart
│   │   │   │       │   └── update_dialog.dart
│   │   │   │       ├── update_red_point.dart
│   │   │   │       └── version_shower.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── fx_updater_test.dart
│   │   ├── l10n/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── desiredFileName.txt
│   │   │   ├── l10n.yaml
│   │   │   ├── l10n_copy.sh
│   │   │   ├── lib/
│   │   │   │   ├── arb/
│   │   │   │   │   ├── app_en.arb
│   │   │   │   │   └── app_zh.arb
│   │   │   │   ├── enum/
│   │   │   │   │   └── language.dart
│   │   │   │   ├── ext.dart
│   │   │   │   ├── gen_l10n/
│   │   │   │   │   ├── app_localizations.dart
│   │   │   │   │   ├── app_localizations_en.dart
│   │   │   │   │   └── app_localizations_zh.dart
│   │   │   │   └── l10n.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       ├── l10n_copy.dart
│   │   │       └── l10n_test.dart
│   │   ├── storage/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── src/
│   │   │   │   │   ├── app_storage.dart
│   │   │   │   │   ├── db_storage/
│   │   │   │   │   │   ├── flutter/
│   │   │   │   │   │   │   ├── article_db_store.dart
│   │   │   │   │   │   │   └── flutter_db_store.dart
│   │   │   │   │   │   ├── flutter_unit/
│   │   │   │   │   │   │   ├── dao/
│   │   │   │   │   │   │   │   └── cache_dao.dart
│   │   │   │   │   │   │   ├── flutter_unit.dart
│   │   │   │   │   │   │   ├── flutter_unit_db_store.dart
│   │   │   │   │   │   │   └── model/
│   │   │   │   │   │   │       └── cache_po.dart
│   │   │   │   │   │   └── storage.dart
│   │   │   │   │   └── sp_storage/
│   │   │   │   │       ├── cao/
│   │   │   │   │       │   └── app_config_cao.dart
│   │   │   │   │       ├── exp.dart
│   │   │   │   │       ├── models/
│   │   │   │   │       │   └── app_config_po.dart
│   │   │   │   │       └── sp_storage.dart
│   │   │   │   └── storage.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── db_storage_test.dart
│   │   ├── toly_ui/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── adapter/
│   │   │   │   │   └── platform_view_adapter.dart
│   │   │   │   ├── button/
│   │   │   │   │   └── feedback_widget.dart
│   │   │   │   ├── code/
│   │   │   │   │   ├── code.dart
│   │   │   │   │   ├── code_widget.dart
│   │   │   │   │   ├── high_light_code.dart
│   │   │   │   │   ├── highlighter_style.dart
│   │   │   │   │   └── language/
│   │   │   │   │       ├── dart_languge.dart
│   │   │   │   │       └── language.dart
│   │   │   │   ├── decorations/
│   │   │   │   │   └── round_rect_rab_indicator.dart
│   │   │   │   ├── default/
│   │   │   │   │   └── loading/
│   │   │   │   │       └── planet_loading.dart
│   │   │   │   ├── dialog/
│   │   │   │   │   ├── alert_conform_dialog.dart
│   │   │   │   │   └── delete_message_panel.dart
│   │   │   │   ├── input/
│   │   │   │   │   ├── edit_panel.dart
│   │   │   │   │   ├── icon_input.dart
│   │   │   │   │   └── input_button.dart
│   │   │   │   ├── markdown/
│   │   │   │   │   ├── markdown_widget.dart
│   │   │   │   │   ├── md_text_styles.dart
│   │   │   │   │   └── syntax_high_lighter.dart
│   │   │   │   ├── object/
│   │   │   │   │   └── windmill.dart
│   │   │   │   ├── popable/
│   │   │   │   │   └── drop_selectable_widget.dart
│   │   │   │   ├── selector/
│   │   │   │   │   ├── burst_menu.dart
│   │   │   │   │   ├── color_chooser.dart
│   │   │   │   │   └── multi_chip_filter.dart
│   │   │   │   ├── sliver_header/
│   │   │   │   │   ├── sliver_pinned_header.dart
│   │   │   │   │   └── sliver_snap_header.dart
│   │   │   │   ├── ti/
│   │   │   │   │   ├── circle.dart
│   │   │   │   │   ├── circle_image.dart
│   │   │   │   │   ├── circle_text.dart
│   │   │   │   │   ├── color_wrapper.dart
│   │   │   │   │   ├── math_runner.dart
│   │   │   │   │   ├── panel.dart
│   │   │   │   │   ├── tag.dart
│   │   │   │   │   ├── text_typer.dart
│   │   │   │   │   └── toly_switch_list_tile.dart
│   │   │   │   └── toly_ui.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── toly_ui_test.dart
│   │   ├── unit_env/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── src/
│   │   │   │   │   └── host.dart
│   │   │   │   └── unit_env.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── unit_env_test.dart
│   │   └── utils/
│   │       ├── .gitignore
│   │       ├── .metadata
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── analysis_options.yaml
│   │       ├── lib/
│   │       │   ├── src/
│   │       │   │   ├── color_utils.dart
│   │       │   │   ├── convert_man.dart
│   │       │   │   ├── http_utils/
│   │       │   │   │   ├── http_util.dart
│   │       │   │   │   ├── http_utils.dart
│   │       │   │   │   ├── logs_interceptor.dart
│   │       │   │   │   ├── response_interceptor.dart
│   │       │   │   │   ├── task_result.dart
│   │       │   │   │   └── token_interceptor.dart
│   │       │   │   ├── random_provider.dart
│   │       │   │   └── toast.dart
│   │       │   └── utils.dart
│   │       ├── pubspec.yaml
│   │       └── test/
│   │           └── utils_test.dart
│   ├── knowledge_system/
│   │   ├── algorithm/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── algorithm.dart
│   │   │   │   └── src/
│   │   │   │       ├── algorithm/
│   │   │   │       │   ├── finding/
│   │   │   │       │   │   ├── functions/
│   │   │   │       │   │   │   ├── AStar.dart
│   │   │   │       │   │   │   ├── BFS.dart
│   │   │   │       │   │   │   ├── BestFS.dart
│   │   │   │       │   │   │   ├── DFS.dart
│   │   │   │       │   │   │   └── dijkstra.dart
│   │   │   │       │   │   └── functions.dart
│   │   │   │       │   └── sort/
│   │   │   │       │       ├── functions/
│   │   │   │       │       │   ├── bubble.dart
│   │   │   │       │       │   ├── cocktail.dart
│   │   │   │       │       │   ├── comb.dart
│   │   │   │       │       │   ├── cycle.dart
│   │   │   │       │       │   ├── gnome.dart
│   │   │   │       │       │   ├── heap.dart
│   │   │   │       │       │   ├── insertion.dart
│   │   │   │       │       │   ├── merge.dart
│   │   │   │       │       │   ├── oddEven.dart
│   │   │   │       │       │   ├── pigeonHole.dart
│   │   │   │       │       │   ├── quick.dart
│   │   │   │       │       │   ├── selection.dart
│   │   │   │       │       │   └── shell.dart
│   │   │   │       │       └── functions.dart
│   │   │   │       ├── data_scope/
│   │   │   │       │   ├── sort_config.dart
│   │   │   │       │   └── state.dart
│   │   │   │       ├── finding/
│   │   │   │       │   ├── data_scope/
│   │   │   │       │   │   ├── finding_config.dart
│   │   │   │       │   │   ├── finding_state.dart
│   │   │   │       │   │   ├── position.dart
│   │   │   │       │   │   └── random_queue.dart
│   │   │   │       │   └── view/
│   │   │   │       │       ├── board.dart
│   │   │   │       │       ├── finding_button.dart
│   │   │   │       │       ├── finding_page.dart
│   │   │   │       │       └── finding_tool_bar.dart
│   │   │   │       ├── navigation/
│   │   │   │       │   ├── menu/
│   │   │   │       │   │   ├── algo_menu.dart
│   │   │   │       │   │   ├── finding.dart
│   │   │   │       │   │   └── sort.dart
│   │   │   │       │   ├── router/
│   │   │   │       │   │   └── router.dart
│   │   │   │       │   └── view/
│   │   │   │       │       ├── algo_desk_navigation.dart
│   │   │   │       │       ├── algo_menu_cell.dart
│   │   │   │       │       └── algo_menu_tree.dart
│   │   │   │       ├── sort/
│   │   │   │       │   ├── data_painter.dart
│   │   │   │       │   ├── sort_page.dart
│   │   │   │       │   ├── sort_parper.dart
│   │   │   │       │   ├── sort_setting.dart
│   │   │   │       │   └── top_bar/
│   │   │   │       │       ├── sort_bar.dart
│   │   │   │       │       └── sort_button.dart
│   │   │   │       └── views/
│   │   │   │           ├── algo_page.dart
│   │   │   │           └── desktop/
│   │   │   │               └── desk_algo_panel.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── utils_test.dart
│   │   ├── artifact/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── artifact.dart
│   │   │   │   └── src/
│   │   │   │       ├── articles/
│   │   │   │       │   ├── bloc/
│   │   │   │       │   │   ├── article/
│   │   │   │       │   │   │   └── bloc.dart
│   │   │   │       │   │   ├── columnize/
│   │   │   │       │   │   │   └── bloc.dart
│   │   │   │       │   │   └── exp.dart
│   │   │   │       │   ├── data/
│   │   │   │       │   │   ├── dao/
│   │   │   │       │   │   │   ├── article_dao.dart
│   │   │   │       │   │   │   └── columnize_dao.dart
│   │   │   │       │   │   ├── exp.dart
│   │   │   │       │   │   ├── model/
│   │   │   │       │   │   │   ├── article.dart
│   │   │   │       │   │   │   └── columnize.dart
│   │   │   │       │   │   └── repository/
│   │   │   │       │   │       ├── article_repository.dart
│   │   │   │       │   │       └── columnize_repository.dart
│   │   │   │       │   └── view/
│   │   │   │       │       ├── article/
│   │   │   │       │       │   ├── article_detail_page.dart
│   │   │   │       │       │   ├── column_detail_page.dart
│   │   │   │       │       │   ├── columnize_page_view.dart
│   │   │   │       │       │   ├── sliver_article.dart
│   │   │   │       │       │   ├── sliver_columnize.dart
│   │   │   │       │       │   └── toly_article_scroll_page.dart
│   │   │   │       │       ├── artifact_page.dart
│   │   │   │       │       ├── building/
│   │   │   │       │       │   └── building_panel.dart
│   │   │   │       │       └── desk_artifact_page.dart
│   │   │   │       └── points/
│   │   │   │           ├── bloc/
│   │   │   │           │   ├── bloc.dart
│   │   │   │           │   ├── point_bloc.dart
│   │   │   │           │   └── point_comment_bloc.dart
│   │   │   │           ├── data/
│   │   │   │           │   ├── api/
│   │   │   │           │   │   ├── app_info.dart
│   │   │   │           │   │   ├── category_api.dart
│   │   │   │           │   │   └── issues_api.dart
│   │   │   │           │   └── model/
│   │   │   │           │       ├── github_model.dart
│   │   │   │           │       ├── github_user.dart
│   │   │   │           │       ├── issue.dart
│   │   │   │           │       ├── issue_comment.dart
│   │   │   │           │       ├── license.dart
│   │   │   │           │       ├── repository.dart
│   │   │   │           │       └── repository_permissions.dart
│   │   │   │           ├── exp.dart
│   │   │   │           ├── repository/
│   │   │   │           │   └── api/
│   │   │   │           │       └── point_api.dart
│   │   │   │           └── view/
│   │   │   │               ├── desk_ui/
│   │   │   │               │   ├── desk_point_page.dart
│   │   │   │               │   └── github_repo_panel.dart
│   │   │   │               └── issues_point/
│   │   │   │                   ├── issue_item.dart
│   │   │   │                   ├── issues_detail.dart
│   │   │   │                   ├── issues_point_page.dart
│   │   │   │                   └── repo_widget.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── utils_test.dart
│   │   ├── awesome/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── awesome.dart
│   │   │   │   └── listenable/
│   │   │   │       ├── change_notifier_01/
│   │   │   │       │   ├── main.dart
│   │   │   │       │   ├── notifier/
│   │   │   │       │   │   └── progress_value_notifier.dart
│   │   │   │       │   └── page/
│   │   │   │       │       ├── detail/
│   │   │   │       │       │   ├── detail_progress_view.dart
│   │   │   │       │       │   └── download_detail.dart
│   │   │   │       │       └── home/
│   │   │   │       │           ├── home_page.dart
│   │   │   │       │           └── home_progress_view.dart
│   │   │   │       └── change_notifier_02/
│   │   │   │           ├── main.dart
│   │   │   │           ├── notifier/
│   │   │   │           │   ├── download_data_scope.dart
│   │   │   │           │   └── progress_value_notifier.dart
│   │   │   │           └── page/
│   │   │   │               ├── detail/
│   │   │   │               │   ├── detail_progress_view.dart
│   │   │   │               │   └── download_detail.dart
│   │   │   │               └── home/
│   │   │   │                   ├── home_page.dart
│   │   │   │                   └── home_progress_view.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── awesome_test.dart
│   │   ├── layout/
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── lib/
│   │   │   │   ├── layout.dart
│   │   │   │   └── src/
│   │   │   │       ├── bloc/
│   │   │   │       │   ├── display_logic.dart
│   │   │   │       │   └── display_state.dart
│   │   │   │       ├── data/
│   │   │   │       │   ├── display_map/
│   │   │   │       │   │   ├── base.dart
│   │   │   │       │   │   ├── display_map.dart
│   │   │   │       │   │   ├── funny.dart
│   │   │   │       │   │   └── multi.dart
│   │   │   │       │   └── model/
│   │   │   │       │       └── display_frame.dart
│   │   │   │       ├── ext/
│   │   │   │       │   └── go_router/
│   │   │   │       │       ├── listener.dart
│   │   │   │       │       └── path.dart
│   │   │   │       ├── navigation/
│   │   │   │       │   ├── menu/
│   │   │   │       │   │   ├── base_layout.dart
│   │   │   │       │   │   ├── funny.dart
│   │   │   │       │   │   ├── layout.dart
│   │   │   │       │   │   ├── menu_repository_impl.dart
│   │   │   │       │   │   ├── multi.dart
│   │   │   │       │   │   ├── popable.dart
│   │   │   │       │   │   └── scroll.dart
│   │   │   │       │   ├── router/
│   │   │   │       │   │   ├── app_router.dart
│   │   │   │       │   │   ├── desk_router.dart
│   │   │   │       │   │   └── transition/
│   │   │   │       │   │       ├── fade_page_transitions_builder.dart
│   │   │   │       │   │       ├── page_route/
│   │   │   │       │   │       │   ├── fade_page_route.dart
│   │   │   │       │   │       │   ├── slide_page_route.dart
│   │   │   │       │   │       │   └── zero_page_route.dart
│   │   │   │       │   │       ├── size_clip_transition.dart
│   │   │   │       │   │       └── slide_transition/
│   │   │   │       │   │           ├── cupertino_back_gesture_detector.dart
│   │   │   │       │   │           └── slide_page_transition_builder.dart
│   │   │   │       │   └── view/
│   │   │   │       │       ├── app_desk_navigation.dart
│   │   │   │       │       └── app_menu_tree.dart
│   │   │   │       └── views/
│   │   │   │           ├── base/
│   │   │   │           │   ├── align/
│   │   │   │           │   │   ├── align_show.dart
│   │   │   │           │   │   └── align_show2.dart
│   │   │   │           │   ├── padding/
│   │   │   │           │   │   ├── inner_padding.dart
│   │   │   │           │   │   ├── outer_padding.dart
│   │   │   │           │   │   └── sizedbox_padding.dart
│   │   │   │           │   ├── positioned/
│   │   │   │           │   │   └── positioned_show.dart
│   │   │   │           │   └── size/
│   │   │   │           │       ├── size_display.dart
│   │   │   │           │       ├── size_loss_by_align.dart
│   │   │   │           │       ├── size_tight_constraint.dart
│   │   │   │           │       └── size_unconstraint.dart
│   │   │   │           ├── components/
│   │   │   │           │   └── grid_xy_layout.dart
│   │   │   │           ├── display/
│   │   │   │           │   ├── layout_playground.dart
│   │   │   │           │   ├── playground_bottom_bar.dart
│   │   │   │           │   └── playground_top_bar.dart
│   │   │   │           ├── interest/
│   │   │   │           │   └── elevator/
│   │   │   │           │       └── elevator.dart
│   │   │   │           ├── layout_page.dart
│   │   │   │           ├── multi/
│   │   │   │           │   └── flex/
│   │   │   │           │       ├── column_show.dart
│   │   │   │           │       └── row_show.dart
│   │   │   │           ├── playground/
│   │   │   │           │   ├── cons.dart
│   │   │   │           │   ├── data/
│   │   │   │           │   │   ├── flex_attr.dart
│   │   │   │           │   │   ├── stack_attr.dart
│   │   │   │           │   │   └── wrap_attr.dart
│   │   │   │           │   └── view/
│   │   │   │           │       ├── display_item.dart
│   │   │   │           │       ├── flex/
│   │   │   │           │       │   ├── flex_op_panel.dart
│   │   │   │           │       │   └── flex_playground.dart
│   │   │   │           │       ├── form_item/
│   │   │   │           │       │   ├── item_selector.dart
│   │   │   │           │       │   ├── item_size_input.dart
│   │   │   │           │       │   └── value_input.dart
│   │   │   │           │       ├── stack/
│   │   │   │           │       │   ├── stack_op_panel.dart
│   │   │   │           │       │   └── stack_playground.dart
│   │   │   │           │       └── wrap/
│   │   │   │           │           ├── wrap_op_panel.dart
│   │   │   │           │           └── wrap_playground.dart
│   │   │   │           ├── popable/
│   │   │   │           │   ├── autocomplete_demo.dart
│   │   │   │           │   ├── dropdown_button_demo.dart
│   │   │   │           │   └── dropdown_menu_demo.dart
│   │   │   │           ├── scroll/
│   │   │   │           │   ├── grid_view/
│   │   │   │           │   │   └── grid_view_demo01.dart
│   │   │   │           │   ├── list_view/
│   │   │   │           │   │   └── list_view_demo01.dart
│   │   │   │           │   └── page_view/
│   │   │   │           │       └── page_view_demo01.dart
│   │   │   │           └── test_show.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       └── layout_test.dart
│   │   └── note/
│   │       ├── .gitignore
│   │       ├── .metadata
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── analysis_options.yaml
│   │       ├── lib/
│   │       │   ├── note.dart
│   │       │   └── src/
│   │       │       ├── bloc/
│   │       │       │   ├── bloc.dart
│   │       │       │   └── news_bloc.dart
│   │       │       ├── env/
│   │       │       │   └── env.dart
│   │       │       ├── repository/
│   │       │       │   ├── article_repository.dart
│   │       │       │   ├── model/
│   │       │       │   │   ├── article.dart
│   │       │       │   │   ├── category.dart
│   │       │       │   │   ├── model.dart
│   │       │       │   │   ├── query.dart
│   │       │       │   │   └── status.dart
│   │       │       │   └── repository.dart
│   │       │       └── view/
│   │       │           ├── art_sys_scope.dart
│   │       │           ├── article_admin.dart
│   │       │           ├── article_editor.dart
│   │       │           ├── article_item.dart
│   │       │           ├── article_list.dart
│   │       │           ├── components/
│   │       │           │   └── button/
│   │       │           │       └── button.dart
│   │       │           ├── desktop/
│   │       │           │   └── article_display.dart
│   │       │           ├── mobile/
│   │       │           │   ├── mobile_article_list.dart
│   │       │           │   ├── mobile_article_page.dart
│   │       │           │   ├── mobile_editor.dart
│   │       │           │   └── note.dart
│   │       │           ├── news/
│   │       │           │   └── news_page.dart
│   │       │           └── view.dart
│   │       ├── pubspec.yaml
│   │       └── test/
│   │           ├── note_test.dart
│   │           └── parser.dart
│   ├── painting_system/
│   │   └── draw_system/
│   │       ├── .gitignore
│   │       ├── .metadata
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── analysis_options.yaml
│   │       ├── lib/
│   │       │   ├── draw_system.dart
│   │       │   └── src/
│   │       │       ├── anim/
│   │       │       │   ├── bezier3_player/
│   │       │       │   │   ├── bezier3_palyer.dart
│   │       │       │   │   └── touch_info.dart
│   │       │       │   ├── circle_halo.dart
│   │       │       │   ├── curve_shower/
│   │       │       │   │   ├── anim_painter.dart
│   │       │       │   │   ├── curve_anim_shower.dart
│   │       │       │   │   └── point_data.dart
│   │       │       │   ├── draw_path.dart
│   │       │       │   ├── dundun_path.dart
│   │       │       │   ├── rotate_by_point/
│   │       │       │   │   ├── angle_panter.dart
│   │       │       │   │   ├── line.dart
│   │       │       │   │   └── rotate_by_point.dart
│   │       │       │   └── spring_widget.dart
│   │       │       ├── art/
│   │       │       │   ├── circle_packing.dart
│   │       │       │   ├── cubic_disarray.dart
│   │       │       │   ├── hypnotic_squares.dart
│   │       │       │   ├── joy_division.dart
│   │       │       │   ├── piet_mondrian.dart
│   │       │       │   ├── tiled_lines.dart
│   │       │       │   ├── triangular_mesh.dart
│   │       │       │   └── un_deux_trois.dart
│   │       │       ├── base/
│   │       │       │   ├── clock_widget.dart
│   │       │       │   ├── digital/
│   │       │       │   │   ├── digital_painter.dart
│   │       │       │   │   ├── digital_path.dart
│   │       │       │   │   ├── digital_shower.dart
│   │       │       │   │   └── digital_widget.dart
│   │       │       │   ├── draw_grid_axis.dart
│   │       │       │   ├── draw_path_fun.dart
│   │       │       │   ├── draw_picture.dart
│   │       │       │   ├── n_side/
│   │       │       │   │   ├── n_side_page.dart
│   │       │       │   │   └── shape_painter.dart
│   │       │       │   ├── polar/
│   │       │       │   │   ├── angle_painter.dart
│   │       │       │   │   ├── polar.dart
│   │       │       │   │   └── polar_painter_widget.dart
│   │       │       │   └── windmill.dart
│   │       │       ├── bloc/
│   │       │       │   └── gallery_unit/
│   │       │       │       └── bloc.dart
│   │       │       ├── desk_ui/
│   │       │       │   ├── desk_frame.dart
│   │       │       │   └── desk_gallery_unit.dart
│   │       │       ├── fun/
│   │       │       │   ├── bufeng/
│   │       │       │   │   ├── bufeng_panel.dart
│   │       │       │   │   ├── config.dart
│   │       │       │   │   └── painter.dart
│   │       │       │   ├── dundun_view.dart
│   │       │       │   ├── random_portrait.dart
│   │       │       │   └── stemp/
│   │       │       │       ├── stamp_data.dart
│   │       │       │       └── stamp_paper.dart
│   │       │       ├── gallery_card_item.dart
│   │       │       ├── gallery_detail_page.dart
│   │       │       ├── gallery_factory.dart
│   │       │       ├── gallery_unit.dart
│   │       │       ├── particle/
│   │       │       │   ├── out/
│   │       │       │   │   ├── clock_fx.dart
│   │       │       │   │   ├── clock_widget.dart
│   │       │       │   │   ├── particle.dart
│   │       │       │   │   └── rnd.dart
│   │       │       │   ├── random/
│   │       │       │   │   ├── particle.dart
│   │       │       │   │   ├── particle_manage.dart
│   │       │       │   │   ├── random_particle.dart
│   │       │       │   │   └── world_render.dart
│   │       │       │   ├── split/
│   │       │       │   │   ├── particle.dart
│   │       │       │   │   ├── particle_manage.dart
│   │       │       │   │   ├── particle_split.dart
│   │       │       │   │   └── world_render.dart
│   │       │       │   └── split_img/
│   │       │       │       ├── particle.dart
│   │       │       │       ├── particle_manage.dart
│   │       │       │       ├── split_image.dart
│   │       │       │       └── world_render.dart
│   │       │       ├── picture_frame.dart
│   │       │       └── utils/
│   │       │           ├── colors.dart
│   │       │           └── coordinate.dart
│   │       ├── pubspec.yaml
│   │       └── test/
│   │           └── draw_system_test.dart
│   ├── tools_system/
│   │   ├── pkg_player/
│   │   │   ├── .amazonq/
│   │   │   │   └── rules/
│   │   │   │       ├── dart.md
│   │   │   │       └── file_create.md
│   │   │   ├── .gitignore
│   │   │   ├── .metadata
│   │   │   ├── CHANGELOG.md
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── analysis_options.yaml
│   │   │   ├── desiredFileName.txt
│   │   │   ├── devtools_options.yaml
│   │   │   ├── example/
│   │   │   │   ├── .gitignore
│   │   │   │   ├── .metadata
│   │   │   │   ├── README.md
│   │   │   │   ├── analysis_options.yaml
│   │   │   │   ├── android/
│   │   │   │   │   ├── .gitignore
│   │   │   │   │   ├── app/
│   │   │   │   │   │   ├── build.gradle
│   │   │   │   │   │   └── src/
│   │   │   │   │   │       ├── debug/
│   │   │   │   │   │       │   └── AndroidManifest.xml
│   │   │   │   │   │       ├── main/
│   │   │   │   │   │       │   ├── AndroidManifest.xml
│   │   │   │   │   │       │   ├── kotlin/
│   │   │   │   │   │       │   │   └── com/
│   │   │   │   │   │       │   │       └── example/
│   │   │   │   │   │       │   │           └── example/
│   │   │   │   │   │       │   │               └── MainActivity.kt
│   │   │   │   │   │       │   └── res/
│   │   │   │   │   │       │       ├── drawable/
│   │   │   │   │   │       │       │   └── launch_background.xml
│   │   │   │   │   │       │       ├── drawable-v21/
│   │   │   │   │   │       │       │   └── launch_background.xml
│   │   │   │   │   │       │       ├── values/
│   │   │   │   │   │       │       │   └── styles.xml
│   │   │   │   │   │       │       └── values-night/
│   │   │   │   │   │       │           └── styles.xml
│   │   │   │   │   │       └── profile/
│   │   │   │   │   │           └── AndroidManifest.xml
│   │   │   │   │   ├── build.gradle
│   │   │   │   │   ├── gradle/
│   │   │   │   │   │   └── wrapper/
│   │   │   │   │   │       └── gradle-wrapper.properties
│   │   │   │   │   ├── gradle.properties
│   │   │   │   │   └── settings.gradle
│   │   │   │   ├── devtools_options.yaml
│   │   │   │   ├── ios/
│   │   │   │   │   ├── .gitignore
│   │   │   │   │   ├── Flutter/
│   │   │   │   │   │   ├── AppFrameworkInfo.plist
│   │   │   │   │   │   ├── Debug.xcconfig
│   │   │   │   │   │   └── Release.xcconfig
│   │   │   │   │   ├── Podfile
│   │   │   │   │   ├── Runner/
│   │   │   │   │   │   ├── AppDelegate.swift
│   │   │   │   │   │   ├── Assets.xcassets/
│   │   │   │   │   │   │   ├── AppIcon.appiconset/
│   │   │   │   │   │   │   │   └── Contents.json
│   │   │   │   │   │   │   └── LaunchImage.imageset/
│   │   │   │   │   │   │       ├── Contents.json
│   │   │   │   │   │   │       └── README.md
│   │   │   │   │   │   ├── Base.lproj/
│   │   │   │   │   │   │   ├── LaunchScreen.storyboard
│   │   │   │   │   │   │   └── Main.storyboard
│   │   │   │   │   │   ├── Info.plist
│   │   │   │   │   │   └── Runner-Bridging-Header.h
│   │   │   │   │   ├── 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
│   │   │   │   │   └── RunnerTests/
│   │   │   │   │       └── RunnerTests.swift
│   │   │   │   ├── lib/
│   │   │   │   │   ├── app_theme.dart
│   │   │   │   │   └── main.dart
│   │   │   │   ├── linux/
│   │   │   │   │   ├── .gitignore
│   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   ├── flutter/
│   │   │   │   │   │   ├── CMakeLists.txt
│   │   │   │   │   │   ├── generated_plugin_registrant.cc
│   │   │   │   │   │   ├── generated_plugin_registrant.h
│   │   │   │   │   │   └── generated_plugins.cmake
│   │   │   │   │   └── runner/
│   │   │   │   │       ├── CMakeLists.txt
│   │   │   │   │       ├── main.cc
│   │   │   │   │       ├── my_application.cc
│   │   │   │   │       └── my_application.h
│   │   │   │   ├── macos/
│   │   │   │   │   ├── .gitignore
│   │   │   │   │   ├── Flutter/
│   │   │   │   │   │   ├── Flutter-Debug.xcconfig
│   │   │   │   │   │   ├── Flutter-Release.xcconfig
│   │   │   │   │   │   └── GeneratedPluginRegistrant.swift
│   │   │   │   │   ├── Podfile
│   │   │   │   │   ├── Runner/
│   │   │   │   │   │   ├── AppDelegate.swift
│   │   │   │   │   │   ├── Assets.xcassets/
│   │   │   │   │   │   │   └── AppIcon.appiconset/
│   │   │   │   │   │   │       └── Contents.json
│   │   │   │   │   │   ├── Base.lproj/
│   │   │   │   │   │   │   └── MainMenu.xib
│   │   │   │   │   │   ├── Configs/
│   │   │   │   │   │   │   ├── AppInfo.xcconfig
│   │   │   │   │   │   │   ├── Debug.xcconfig
│   │   │   │   │   │   │   ├── Release.xcconfig
│   │   │   │   │   │   │   └── Warnings.xcconfig
│   │   │   │   │   │   ├── DebugProfile.entitlements
│   │   │   │   │   │   ├── Info.plist
│   │   │   │   │   │   ├── MainFlutterWindow.swift
│   │   │   │   │   │   └── Release.entitlements
│   │   │   │   │   ├── Runner.xcodeproj/
│   │   │   │   │   │   ├── project.pbxproj
│   │   │   │   │   │   ├── project.xcworkspace/
│   │   │   │   │   │   │   └── xcshareddata/
│   │   │   │   │   │   │       └── IDEWorkspaceChecks.plist
│   │   │   │   │   │   └── xcshareddata/
│   │   │   │   │   │       └── xcschemes/
│   │   │   │   │   │           └── Runner.xcscheme
│   │   │   │   │   ├── Runner.xcworkspace/
│   │   │   │   │   │   ├── contents.xcworkspacedata
│   │   │   │   │   │   └── xcshareddata/
│   │   │   │   │   │       └── IDEWorkspaceChecks.plist
│   │   │   │   │   └── RunnerTests/
│   │   │   │   │       └── RunnerTests.swift
│   │   │   │   ├── pubspec.yaml
│   │   │   │   ├── test/
│   │   │   │   │   └── widget_test.dart
│   │   │   │   ├── web/
│   │   │   │   │   ├── 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
│   │   │   │           ├── runner.exe.manifest
│   │   │   │           ├── utils.cpp
│   │   │   │           ├── utils.h
│   │   │   │           ├── win32_window.cpp
│   │   │   │           └── win32_window.h
│   │   │   ├── fx.yaml
│   │   │   ├── l10n.yaml
│   │   │   ├── lib/
│   │   │   │   ├── pkg_player.dart
│   │   │   │   └── src/
│   │   │   │       ├── bloc/
│   │   │   │       │   ├── bloc.dart
│   │   │   │       │   ├── category/
│   │   │   │       │   │   ├── category_cubit.dart
│   │   │   │       │   │   └── category_state.dart
│   │   │   │       │   ├── comments/
│   │   │   │       │   │   ├── comment_replies_cubit.dart
│   │   │   │       │   │   ├── comment_replies_state.dart
│   │   │   │       │   │   ├── comments_cubit.dart
│   │   │   │       │   │   └── comments_state.dart
│   │   │   │       │   └── packages/
│   │   │   │       │       ├── package_cubit.dart
│   │   │   │       │       └── package_state.dart
│   │   │   │       ├── l10n/
│   │   │   │       │   ├── arb/
│   │   │   │       │   │   ├── l10n_en.arb
│   │   │   │       │   │   └── l10n_zh.arb
│   │   │   │       │   ├── gen/
│   │   │   │       │   │   ├── l10n.dart
│   │   │   │       │   │   ├── l10n_en.dart
│   │   │   │       │   │   └── l10n_zh.dart
│   │   │   │       │   └── l10n.dart
│   │   │   │       ├── repository/
│   │   │   │       │   ├── api/
│   │   │   │       │   │   ├── request.dart
│   │   │   │       │   │   └── url.dart
│   │   │   │       │   ├── database/
│   │   │   │       │   │   ├── dao/
│   │   │   │       │   │   │   ├── category_dao.dart
│   │   │   │       │   │   │   ├── dao.dart
│   │   │   │       │   │   │   ├── package_dao.dart
│   │   │   │       │   │   │   ├── package_service.dart
│   │   │   │       │   │   │   ├── tag_dao.dart
│   │   │   │       │   │   │   └── topic_dao.dart
│   │   │   │       │   │   ├── database.dart
│   │   │   │       │   │   └── database_helper.dart
│   │   │   │       │   ├── model/
│   │   │   │       │   │   ├── category_model.dart
│   │   │   │       │   │   ├── comment_model.dart
│   │   │   │       │   │   ├── model.dart
│   │   │   │       │   │   ├── plugin_model.dart
│   │   │   │       │   │   └── sort_type.dart
│   │   │   │       │   └── repository.dart
│   │   │   │       └── view/
│   │   │   │           ├── comments/
│   │   │   │           │   ├── comment_replies_page.dart
│   │   │   │           │   ├── comments_detail_page.dart
│   │   │   │           │   ├── comments_empty.dart
│   │   │   │           │   ├── comments_error.dart
│   │   │   │           │   ├── comments_loading.dart
│   │   │   │           │   ├── comments_top_bar.dart
│   │   │   │           │   └── comments_with_data.dart
│   │   │   │           ├── components/
│   │   │   │           │   ├── card/
│   │   │   │           │   │   ├── plugin_card.dart
│   │   │   │           │   │   └── plugin_card_page.dart
│   │   │   │           │   └── dialog/
│   │   │   │           │       └── sort_picker.dart
│   │   │   │           ├── home/
│   │   │   │           │   ├── empty_list.dart
│   │   │   │           │   ├── pkg_list_with_data.dart
│   │   │   │           │   ├── pkg_player_home_page.dart
│   │   │   │           │   ├── plugin_item.dart
│   │   │   │           │   └── recommendation_page.dart
│   │   │   │           ├── package_detail/
│   │   │   │           │   ├── comments_section.dart
│   │   │   │           │   ├── detail.dart
│   │   │   │           │   ├── detail_flexible_bar.dart
│   │   │   │           │   ├── plugin_dependencies_section.dart
│   │   │   │           │   ├── plugin_detail_page.dart
│   │   │   │           │   ├── plugin_info_section.dart
│   │   │   │           │   └── plugin_tags.dart
│   │   │   │           └── view.dart
│   │   │   ├── pubspec.yaml
│   │   │   └── test/
│   │   │       ├── pkg_player_test.dart
│   │   │       ├── science_server/
│   │   │       │   ├── moke/
│   │   │       │   │   ├── category.json
│   │   │       │   │   └── moke.dart
│   │   │       │   ├── package.dart
│   │   │       │   ├── sync/
│   │   │       │   │   ├── model/
│   │   │       │   │   │   ├── package_detail.dart
│   │   │       │   │   │   └── pub_package.dart
│   │   │       │   │   ├── package_repository.dart
│   │   │       │   │   └── pub_repository.dart
│   │   │       │   ├── sync.dart
│   │   │       │   ├── system.dart
│   │   │       │   └── test_comments.dart
│   │   │       └── scripts/
│   │   │           ├── analyze_packages.dart
│   │   │           ├── find_untranslated.dart
│   │   │           ├── get_ipv4.dart
│   │   │           ├── insert_chinese_desc.dart
│   │   │           └── update_dev_ip.dart
│   │   └── treasure_tools/
│   │       ├── .gitignore
│   │       ├── .metadata
│   │       ├── CHANGELOG.md
│   │       ├── LICENSE
│   │       ├── README.md
│   │       ├── analysis_options.yaml
│   │       ├── lib/
│   │       │   ├── src/
│   │       │   │   ├── bloc/
│   │       │   │   │   └── state.dart
│   │       │   │   ├── class_generator.dart
│   │       │   │   ├── code_gen_page.dart
│   │       │   │   ├── data/
│   │       │   │   │   └── task_result.dart
│   │       │   │   ├── desk_widget_top_bar.dart
│   │       │   │   ├── icon_font_gen/
│   │       │   │   │   ├── gen_message_action.dart
│   │       │   │   │   ├── icon_font_class_parser.dart
│   │       │   │   │   ├── icon_font_gen_config.dart
│   │       │   │   │   └── icon_font_gen_page.dart
│   │       │   │   ├── model/
│   │       │   │   │   ├── class.dart
│   │       │   │   │   └── field.dart
│   │       │   │   ├── popable/
│   │       │   │   │   ├── class_gen_field.dart
│   │       │   │   │   └── toly_select.dart
│   │       │   │   ├── view/
│   │       │   │   │   ├── json_display/
│   │       │   │   │   │   └── json_display.dart
│   │       │   │   │   └── mobile/
│   │       │   │   │       └── mobile_tool_page.dart
│   │       │   │   └── wrapper.dart
│   │       │   └── treasure_tools.dart
│   │       ├── pubspec.yaml
│   │       └── test/
│   │           ├── iconfont_parser_test.dart
│   │           ├── treasure_tools_test.dart
│   │           ├── yaml_parser_test.dart
│   │           └── yaml_parser_test2.dart
│   └── widget_system/
│       ├── widget_module/
│       │   ├── .gitignore
│       │   ├── .metadata
│       │   ├── CHANGELOG.md
│       │   ├── LICENSE
│       │   ├── README.md
│       │   ├── analysis_options.yaml
│       │   ├── lib/
│       │   │   ├── blocs/
│       │   │   │   ├── action/
│       │   │   │   │   └── widget_action.dart
│       │   │   │   ├── blocs.dart
│       │   │   │   ├── category_bloc/
│       │   │   │   │   ├── category_bloc.dart
│       │   │   │   │   ├── category_event.dart
│       │   │   │   │   └── category_state.dart
│       │   │   │   ├── category_widget_bloc/
│       │   │   │   │   ├── category_widget_bloc.dart
│       │   │   │   │   ├── category_widget_event.dart
│       │   │   │   │   └── category_widget_state.dart
│       │   │   │   ├── widget_detail_bloc/
│       │   │   │   │   ├── widget_detail_bloc.dart
│       │   │   │   │   └── widget_detail_state.dart
│       │   │   │   └── widgets_bloc/
│       │   │   │       ├── widgets_bloc.dart
│       │   │   │       ├── widgets_event.dart
│       │   │   │       └── widgets_state.dart
│       │   │   ├── event/
│       │   │   │   ├── widget_event.dart
│       │   │   │   └── widget_statistics_event.dart
│       │   │   ├── views/
│       │   │   │   ├── components/
│       │   │   │   │   ├── collected_tag.dart
│       │   │   │   │   └── widget_logo_map.dart
│       │   │   │   ├── desk_ui/
│       │   │   │   │   ├── category_panel/
│       │   │   │   │   │   ├── desk_category_page.dart
│       │   │   │   │   │   └── desk_top_like_panel.dart
│       │   │   │   │   ├── desk_ui.dart
│       │   │   │   │   ├── widget_detail/
│       │   │   │   │   │   ├── link_widget_buttons.dart
│       │   │   │   │   │   ├── widget_detail_bar.dart
│       │   │   │   │   │   ├── widget_detail_page.dart
│       │   │   │   │   │   ├── widget_detail_panel.dart
│       │   │   │   │   │   └── widget_node_panel.dart
│       │   │   │   │   └── widget_panel/
│       │   │   │   │       ├── desk_search_bar.dart
│       │   │   │   │       ├── desk_search_bar_v2.dart
│       │   │   │   │       ├── desk_widget_top_bar.dart
│       │   │   │   │       └── widget_panel.dart
│       │   │   │   ├── mobile/
│       │   │   │   │   ├── category_page/
│       │   │   │   │   │   ├── category_detail.dart
│       │   │   │   │   │   ├── category_list_item.dart
│       │   │   │   │   │   ├── category_page.dart
│       │   │   │   │   │   ├── collect_page.dart
│       │   │   │   │   │   ├── delete_category_dialog.dart
│       │   │   │   │   │   ├── edit_category_panel.dart
│       │   │   │   │   │   ├── empty_category.dart
│       │   │   │   │   │   ├── home_right_drawer.dart
│       │   │   │   │   │   ├── like_widget_page.dart
│       │   │   │   │   │   └── sync/
│       │   │   │   │   │       ├── async_button.dart
│       │   │   │   │   │       ├── category_api.dart
│       │   │   │   │   │       └── upload_button.dart
│       │   │   │   │   ├── mobile_ui.dart
│       │   │   │   │   ├── search_page/
│       │   │   │   │   │   ├── app_search_bar.dart
│       │   │   │   │   │   ├── standard_search_bar.dart
│       │   │   │   │   │   └── standard_search_page.dart
│       │   │   │   │   ├── widget_detail/
│       │   │   │   │   │   ├── category_end_drawer.dart
│       │   │   │   │   │   ├── collect_widget_list_item.dart
│       │   │   │   │   │   ├── node_display/
│       │   │   │   │   │   │   ├── code_display.dart
│       │   │   │   │   │   │   ├── collapse.dart
│       │   │   │   │   │   │   ├── node_display.dart
│       │   │   │   │   │   │   └── node_title.dart
│       │   │   │   │   │   ├── widget_detail_bar.dart
│       │   │   │   │   │   ├── widget_detail_page.dart
│       │   │   │   │   │   ├── widget_detail_panel.dart
│       │   │   │   │   │   ├── widget_fields_sliver.dart
│       │   │   │   │   │   └── widget_node_panel.dart
│       │   │   │   │   └── widget_page/
│       │   │   │   │       ├── home_drawer.dart
│       │   │   │   │       ├── phone_widget_content.dart
│       │   │   │   │       ├── slider.dart
│       │   │   │   │       ├── standard_home_page.dart
│       │   │   │   │       ├── standard_home_search.dart
│       │   │   │   │       ├── unit_drawer_header.dart
│       │   │   │   │       ├── widget_list_panel.dart
│       │   │   │   │       └── widget_page.dart
│       │   │   │   └── widgets_bloc_provider.dart
│       │   │   └── widget_module.dart
│       │   ├── pubspec.yaml
│       │   └── test/
│       │       └── widget_module_test.dart
│       ├── widget_repository/
│       │   ├── .gitignore
│       │   ├── .metadata
│       │   ├── CHANGELOG.md
│       │   ├── LICENSE
│       │   ├── README.md
│       │   ├── analysis_options.yaml
│       │   ├── doc/
│       │   │   └── tables_overview.md
│       │   ├── lib/
│       │   │   ├── src/
│       │   │   │   ├── database/
│       │   │   │   │   ├── dao/
│       │   │   │   │   │   ├── category_dao.dart
│       │   │   │   │   │   ├── like_dao.dart
│       │   │   │   │   │   ├── node_dao.dart
│       │   │   │   │   │   ├── widget_dao.dart
│       │   │   │   │   │   └── widget_statistics_dao.dart
│       │   │   │   │   ├── database.dart
│       │   │   │   │   ├── db_impl/
│       │   │   │   │   │   ├── category_db_repository.dart
│       │   │   │   │   │   ├── node_db_repository.dart
│       │   │   │   │   │   └── widget_db_repository.dart
│       │   │   │   │   └── po/
│       │   │   │   │       ├── category_po.dart
│       │   │   │   │       ├── node_po.dart
│       │   │   │   │       └── widget_po.dart
│       │   │   │   ├── memory/
│       │   │   │   │   ├── memory_node_repository.dart
│       │   │   │   │   └── memory_widget_repository.dart
│       │   │   │   ├── model/
│       │   │   │   │   ├── category_model.dart
│       │   │   │   │   ├── model.dart
│       │   │   │   │   ├── node_model.dart
│       │   │   │   │   ├── widget_field_model.dart
│       │   │   │   │   ├── widget_filter.dart
│       │   │   │   │   ├── widget_model.dart
│       │   │   │   │   └── widget_statistics.dart
│       │   │   │   └── repository/
│       │   │   │       ├── category_repository.dart
│       │   │   │       ├── node_repository.dart
│       │   │   │       ├── repository.dart
│       │   │   │       ├── widget_repository.dart
│       │   │   │       ├── widget_statistics_provider.dart
│       │   │   │       └── widget_statistics_service.dart
│       │   │   └── widget_repository.dart
│       │   ├── pubspec.yaml
│       │   └── test/
│       │       └── widget_repository_test.dart
│       └── widget_ui/
│           ├── .gitignore
│           ├── .metadata
│           ├── CHANGELOG.md
│           ├── LICENSE
│           ├── README.md
│           ├── analysis_options.yaml
│           ├── lib/
│           │   ├── src/
│           │   │   ├── bloc/
│           │   │   │   ├── bloc.dart
│           │   │   │   └── liked_widget_bloc.dart
│           │   │   └── view/
│           │   │       ├── field/
│           │   │       │   ├── filed.dart
│           │   │       │   ├── widget_fields_dialog.dart
│           │   │       │   └── widget_fields_page.dart
│           │   │       ├── node_tiled/
│           │   │       │   └── node_tiled.dart
│           │   │       ├── view.dart
│           │   │       └── widget_tiled/
│           │   │           ├── widget_detail_logo.dart
│           │   │           ├── widget_fields_dialog.dart
│           │   │           ├── widget_fields_page.dart
│           │   │           ├── widget_id_view.dart
│           │   │           ├── widget_item.dart
│           │   │           ├── widget_like_tag.dart
│           │   │           ├── widget_logo.dart
│           │   │           └── widget_tiled.dart
│           │   └── widget_ui.dart
│           ├── pubspec.yaml
│           └── test/
│               └── widget_ui_test.dart
├── pubspec.yaml
├── test/
│   ├── app_update_test.dart
│   ├── size.dart
│   └── widget_test.dart
├── web/
│   ├── index.html
│   ├── manifest.json
│   └── splash.js
└── 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
        ├── runner.exe.manifest
        ├── utils.cpp
        ├── utils.h
        ├── win32_window.cpp
        └── win32_window.h
Download .txt
Showing preview only (283K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (3198 symbols across 608 files)

FILE: lib/main.dart
  function main (line 3) | void main(List<String> args)

FILE: lib/src/flutter_unit.dart
  class FlutterUnit3 (line 22) | class FlutterUnit3 extends StatefulWidget {
    method createState (line 26) | State<FlutterUnit3> createState()
  class _FlutterUnit3State (line 29) | class _FlutterUnit3State extends State<FlutterUnit3> with LocalProvider {
    method initState (line 39) | void initState()
    method build (line 45) | Widget build(BuildContext context)
    method _initWeb (line 70) | void _initWeb()
    method _onLocaleChange (line 76) | void _onLocaleChange(BuildContext context, AppConfig state)

FILE: lib/src/l10n/gen/app_l10n.dart
  class AppL10n (line 64) | abstract class AppL10n {
    method of (line 70) | AppL10n of(BuildContext context)
  class _AppL10nDelegate (line 191) | class _AppL10nDelegate extends LocalizationsDelegate<AppL10n> {
    method load (line 195) | Future<AppL10n> load(Locale locale)
    method isSupported (line 200) | bool isSupported(Locale locale)
    method shouldReload (line 204) | bool shouldReload(_AppL10nDelegate old)
  function lookupAppL10n (line 207) | AppL10n lookupAppL10n(Locale locale)

FILE: lib/src/l10n/gen/app_l10n_en.dart
  class AppL10nEn (line 8) | class AppL10nEn extends AppL10n {

FILE: lib/src/l10n/gen/app_l10n_zh.dart
  class AppL10nZh (line 8) | class AppL10nZh extends AppL10n {

FILE: lib/src/navigation/model/app_tab.dart
  type AppTab (line 7) | enum AppTab {

FILE: lib/src/navigation/router/widgets/collection_route.dart
  function collectionDetailBuilder (line 30) | Widget collectionDetailBuilder(BuildContext context, GoRouterState state)

FILE: lib/src/navigation/router/widgets/widgets_route.dart
  function widgetDetailBuilder (line 23) | Widget widgetDetailBuilder(BuildContext context, GoRouterState state)

FILE: lib/src/navigation/view/app_bloc_provider.dart
  class AppBlocProvider (line 15) | class AppBlocProvider extends StatefulWidget {
    method createState (line 21) | State createState()
  class _AppBlocProviderState (line 24) | class _AppBlocProviderState extends State<AppBlocProvider> {
    method build (line 26) | Widget build(BuildContext context)
    method dispose (line 46) | void dispose()

FILE: lib/src/navigation/view/desktop/flutter_unit_desk_navigation.dart
  class AppDeskNavigation (line 11) | class AppDeskNavigation extends StatelessWidget {
    method build (line 17) | Widget build(BuildContext context)
  class DeskNavigationRail (line 31) | class DeskNavigationRail extends StatefulWidget {
    method createState (line 35) | State<DeskNavigationRail> createState()
  class _DeskNavigationRailState (line 38) | class _DeskNavigationRailState extends State<DeskNavigationRail> {
    method build (line 41) | Widget build(BuildContext context)
    method didChangeDependencies (line 60) | void didChangeDependencies()

FILE: lib/src/navigation/view/desktop/locale_change_menu.dart
  class LocaleChangeMenu (line 7) | class LocaleChangeMenu extends StatelessWidget {
    method build (line 11) | Widget build(BuildContext context)

FILE: lib/src/navigation/view/desktop/menu_bar_leading.dart
  class MenuBarLeading (line 15) | class MenuBarLeading extends StatelessWidget {
    method build (line 19) | Widget build(BuildContext context)
    method _buildIcons (line 60) | Widget _buildIcons()
  class LinkIconMenu (line 77) | class LinkIconMenu {
    method launch (line 83) | void launch()
    method _launchUrl (line 85) | void _launchUrl(String url)

FILE: lib/src/navigation/view/desktop/menu_bar_tail.dart
  type ActionType (line 21) | enum ActionType {
  class MenuBarTail (line 30) | class MenuBarTail extends StatelessWidget {
    method build (line 34) | Widget build(BuildContext context)
  class SettingIcon (line 67) | class SettingIcon extends StatelessWidget {
    method build (line 71) | Widget build(BuildContext context)

FILE: lib/src/navigation/view/desktop/theme_model_switch_icon.dart
  class ThemeModelSwitchIcon (line 6) | class ThemeModelSwitchIcon extends StatelessWidget {
    method build (line 11) | Widget build(BuildContext context)

FILE: lib/src/navigation/view/desktop/toly_unit_menu_cell.dart
  class FlutterUnitMenuCell (line 17) | class FlutterUnitMenuCell extends StatelessWidget {
    method build (line 29) | Widget build(BuildContext context)

FILE: lib/src/navigation/view/desktop/unit_shortcuts_scope.dart
  class GlobalFind (line 7) | class GlobalFind extends Intent {
  class UnitShortcutsScope (line 11) | class UnitShortcutsScope extends StatefulWidget {
    method createState (line 17) | State<UnitShortcutsScope> createState()
  class _UnitShortcutsScopeState (line 20) | class _UnitShortcutsScopeState extends State<UnitShortcutsScope>
    method build (line 23) | Widget build(BuildContext context)
    method onEvent (line 38) | void onEvent(FxEvent event)
    method _onGlobalSearch (line 44) | Object? _onGlobalSearch(GlobalFind intent)

FILE: lib/src/navigation/view/mobile/carousel.dart
  type TypeWidgetBuilder (line 6) | typedef TypeWidgetBuilder<T> = Widget Function(BuildContext context, T d...
  class Carousel (line 8) | class Carousel<T> extends StatefulWidget {
    method createState (line 19) | State createState()
  class _CarouselState (line 22) | class _CarouselState<T> extends State<Carousel<T>> {
    method initState (line 31) | void initState()
    method dispose (line 49) | void dispose()
    method build (line 62) | Widget build(BuildContext context)
    method _buildAnimItemByIndex (line 163) | Widget _buildAnimItemByIndex(BuildContext context, Widget? child, int ...
    method _fixPosition (line 180) | int _fixPosition(int realPos, int initPos, int length)
  class HoverIndicator (line 188) | class HoverIndicator extends StatefulWidget {
    method createState (line 195) | State<HoverIndicator> createState()
  class _HoverIndicatorState (line 198) | class _HoverIndicatorState extends State<HoverIndicator> {
    method build (line 200) | Widget build(BuildContext context)
    method _onEnter (line 225) | void _onEnter(PointerEnterEvent event)
    method _onExit (line 231) | void _onExit(PointerExitEvent event)

FILE: lib/src/navigation/view/mobile/news.dart
  class NewsHeader (line 10) | class NewsHeader extends StatefulWidget {
    method createState (line 14) | State<NewsHeader> createState()
  class _NewsHeaderState (line 17) | class _NewsHeaderState extends State<NewsHeader> {
    method build (line 19) | Widget build(BuildContext context)
  function launch (line 78) | void launch(String url)
  function _launchUrl (line 80) | void _launchUrl(String url)
  class NewsArticleDisplay (line 84) | class NewsArticleDisplay extends StatelessWidget {
    method build (line 93) | Widget build(BuildContext context)

FILE: lib/src/navigation/view/mobile/pure_bottom_bar.dart
  class PureBottomBar (line 6) | class PureBottomBar extends StatelessWidget {
    method build (line 20) | Widget build(BuildContext context)

FILE: lib/src/navigation/view/mobile/unit_navigation.dart
  class UnitPhoneNavigation (line 21) | class UnitPhoneNavigation extends StatefulWidget {
    method createState (line 25) | State createState()
  class _UnitPhoneNavigationState (line 28) | class _UnitPhoneNavigationState extends State<UnitPhoneNavigation> {
    method initState (line 37) | void initState()
    method dispose (line 46) | void dispose()
    method build (line 54) | Widget build(BuildContext context)
    method _buildBottomNav (line 77) | Widget _buildBottomNav(BuildContext context)
    method _onTapBottomNav (line 92) | void _onTapBottomNav(int index)

FILE: lib/src/starter/bridge/unit_bridge.dart
  class UnitNoteBridge (line 6) | class UnitNoteBridge with NoteModuleBridge {

FILE: lib/src/starter/fx_application.dart
  class FxApplication (line 17) | class FxApplication with FxStarter<AppConfig> {
    method onLoaded (line 27) | void onLoaded(BuildContext context, int cost, AppConfig state)
    method onStartSuccess (line 39) | void onStartSuccess(BuildContext context, AppConfig state)
    method onStartError (line 47) | void onStartError(BuildContext context, Object error, StackTrace trace)
    method onGlobalError (line 52) | void onGlobalError(Object error, StackTrace stack)

FILE: lib/src/starter/start_repository.dart
  class FlutterUnitStartRepo (line 19) | class FlutterUnitStartRepo implements AppStartRepository<AppConfig> {
    method initApp (line 25) | Future<AppConfig> initApp()
    method initDb (line 45) | Future<void> initDb()
    method _doCopyAssetsDb (line 60) | Future<void> _doCopyAssetsDb(String dbPath)
    method _checkShouldCopy (line 89) | Future<bool> _checkShouldCopy(String dbPath, SharedPreferences prefs)

FILE: lib/src/starter/view/error/app_start_error.dart
  class AppStartErrorPage (line 5) | class AppStartErrorPage extends StatelessWidget {
    method build (line 10) | Widget build(BuildContext context)

FILE: lib/src/starter/view/splash/Flutter_unit_splash.dart
  class FlutterUnitSplash (line 15) | class FlutterUnitSplash extends StatelessWidget {
    method build (line 19) | Widget build(BuildContext context)
  class _SplashBody (line 33) | class _SplashBody extends StatelessWidget {
    method build (line 37) | Widget build(BuildContext context)
  class ColorfulText (line 88) | class ColorfulText extends StatelessWidget {
    method build (line 92) | Widget build(BuildContext context)
  class SplashTopBar (line 114) | class SplashTopBar extends StatelessWidget {
    method build (line 121) | Widget build(BuildContext context)

FILE: lib/src/starter/view/splash/flutter_unit_text.dart
  class FlutterUnitText (line 6) | class FlutterUnitText extends StatefulWidget {
    method createState (line 19) | State createState()
  class _FlutterUnitTextState (line 22) | class _FlutterUnitTextState extends State<FlutterUnitText>
    method initState (line 33) | void initState()
    method dispose (line 47) | void dispose()
    method didUpdateWidget (line 53) | void didUpdateWidget(FlutterUnitText oldWidget)
    method build (line 61) | Widget build(BuildContext context)
  class Interpolator (line 73) | class Interpolator extends Curve {
    method transformInternal (line 77) | double transformInternal(double t)
  class SpringPainter (line 83) | class SpringPainter extends CustomPainter {
    method paint (line 97) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 120) | bool shouldRepaint(covariant SpringPainter oldDelegate)

FILE: linux/flutter/generated_plugin_registrant.cc
  function fl_register_plugins (line 14) | void fl_register_plugins(FlPluginRegistry* registry) {

FILE: linux/main.cc
  function main (line 3) | int main(int argc, char** argv) {

FILE: linux/my_application.cc
  type _MyApplication (line 10) | struct _MyApplication {
  function my_application_activate (line 18) | static void my_application_activate(GApplication* application) {
  function gboolean (line 66) | static gboolean my_application_local_command_line(GApplication* applicat...
  function my_application_dispose (line 85) | static void my_application_dispose(GObject* object) {
  function my_application_class_init (line 91) | static void my_application_class_init(MyApplicationClass* klass) {
  function my_application_init (line 97) | static void my_application_init(MyApplication* self) {}
  function MyApplication (line 99) | MyApplication* my_application_new() {

FILE: modules/basic_system/app/lib/app/action/url.dart
  function jumpURL (line 10) | void jumpURL(String url)

FILE: modules/basic_system/app/lib/app/cons/cons.dart
  class Cons (line 10) | class Cons {
  type ThemeColor (line 54) | enum ThemeColor {

FILE: modules/basic_system/app/lib/app/cons/global_value.dart
  class AppMeta (line 15) | class AppMeta {
    method toHeaderJson (line 24) | Map<String, dynamic> toHeaderJson()
  function initAppMeta (line 32) | Future<void> initAppMeta()

FILE: modules/basic_system/app/lib/app/cons/path_unit.dart
  class PathUnit (line 5) | class PathUnit {

FILE: modules/basic_system/app/lib/app/cons/sp.dart
  class SpKey (line 5) | class SpKey{

FILE: modules/basic_system/app/lib/app/cons/str_unit.dart
  class StrUnit (line 8) | class StrUnit {
    method galleryDesc (line 13) | String galleryDesc(BuildContext context)

FILE: modules/basic_system/app/lib/app/res/toly_icon.dart
  class TolyIcon (line 4) | class TolyIcon {

FILE: modules/basic_system/app/lib/app/router/app_route.dart
  type AppRoute (line 1) | enum AppRoute {

FILE: modules/basic_system/app/lib/app/style/behavior/no_scroll_behavior.dart
  class NoScrollBehavior (line 7) | class NoScrollBehavior extends ScrollBehavior {
    method buildOverscrollIndicator (line 9) | Widget buildOverscrollIndicator(

FILE: modules/basic_system/app/lib/app/style/gap.dart
  class Gap (line 7) | class Gap{

FILE: modules/basic_system/app/lib/app/style/shape/coupon_shape_border.dart
  class CouponShapeBorder (line 9) | class CouponShapeBorder extends ShapeBorder {
    method getInnerPath (line 32) | Path getInnerPath(Rect rect, {TextDirection? textDirection})
    method getOuterPath (line 37) | Path getOuterPath(Rect rect, {TextDirection? textDirection})
    method _formHoleBottom (line 67) | void _formHoleBottom(Path path, Rect rect, double d)
    method _formHoleTop (line 77) | void _formHoleTop(Path path, Rect rect, double d)
    method paint (line 106) | void paint(Canvas canvas, Rect rect, {TextDirection? textDirection})
    method scale (line 133) | ShapeBorder scale(double t)

FILE: modules/basic_system/app/lib/app/style/shape/techno_shape.dart
  class TechnoShapeBorder (line 9) | class TechnoShapeBorder extends ShapeBorder {
    method getInnerPath (line 36) | Path getInnerPath(Rect rect, {TextDirection? textDirection})
    method getOuterPath (line 43) | Path getOuterPath(Rect rect, {TextDirection? textDirection})
    method paint (line 65) | void paint(Canvas canvas, Rect rect, {TextDirection? textDirection})
    method scale (line 81) | ShapeBorder scale(double t)

FILE: modules/basic_system/app/lib/app/style/unit_color.dart
  class UnitColor (line 7) | class UnitColor {

FILE: modules/basic_system/app/lib/app/style/unit_text_style.dart
  class UnitTextStyle (line 7) | class UnitTextStyle {

FILE: modules/basic_system/app/lib/app/theme/app_theme.dart
  function darkTheme (line 5) | ThemeData darkTheme(AppConfig state)
  function lightTheme (line 69) | ThemeData lightTheme(AppConfig state)

FILE: modules/basic_system/app/lib/app/theme/size_unit.dart
  class SizeUnit (line 7) | class SizeUnit {

FILE: modules/basic_system/app/lib/app_config/bloc/bloc.dart
  class AppConfigBloc (line 14) | class AppConfigBloc extends Cubit<AppConfig> {
    method close (line 18) | Future<void> close()
    method init (line 23) | void init(AppConfig state)
    method switchFontFamily (line 30) | void switchFontFamily(String family)
    method switchLanguage (line 37) | void switchLanguage(Language language)
    method switchThemeColor (line 44) | void switchThemeColor(ThemeColor color)
    method switchShowBg (line 51) | void switchShowBg(bool show)
    method switchShowOver (line 58) | void switchShowOver(bool show)
    method switchCoderTheme (line 65) | void switchCoderTheme(int codeStyleIndex)
    method changeItemStyle (line 72) | void changeItemStyle(int index)
    method changeThemeMode (line 78) | void changeThemeMode(ThemeMode style)
    method switchShowTool (line 84) | void switchShowTool(bool show)

FILE: modules/basic_system/app/lib/app_config/bloc/state.dart
  class AppConfig (line 16) | class AppConfig extends Equatable {
    method copyWith (line 74) | AppConfig copyWith({
    method toAppConfigPo (line 102) | AppConfigPo toAppConfigPo()
    method toString (line 133) | String toString()

FILE: modules/basic_system/app/lib/event/api.dart
  function sendEvent (line 5) | void sendEvent(int id, {String? extra})

FILE: modules/basic_system/app/lib/http/flutter_unit/api/upgrade_api.dart
  class UnitUpgradeApi (line 6) | class UnitUpgradeApi implements UpgradeApi {
    method fetch (line 8) | Future<ApiRet<AppInfo>> fetch(int appId, String locale)

FILE: modules/basic_system/app/lib/http/flutter_unit/unit_host.dart
  class UnitHost (line 3) | class UnitHost extends Host {
  type UnitApi (line 23) | enum UnitApi {

FILE: modules/basic_system/app/lib/http/register.dart
  function registerHttpClient (line 8) | void registerHttpClient(bool isZh)
  class ScienceAuth (line 18) | class ScienceAuth extends ApiAuth {
  class UnitApiAuth (line 23) | class UnitApiAuth extends ApiAuth {

FILE: modules/basic_system/app/lib/http/science/science_host.dart
  class ScienceHost (line 4) | class ScienceHost extends Host {
  type ScienceApi (line 25) | enum ScienceApi {

FILE: modules/basic_system/app/lib/http/science/science_rep_interceptor.dart
  class ScienceRepInterceptor (line 4) | class ScienceRepInterceptor extends InterceptorsWrapper {
    method onResponse (line 6) | void onResponse(Response response, ResponseInterceptorHandler handler)
    method handleResponse (line 11) | void handleResponse(Response response)
  class ApiTrace (line 27) | class ApiTrace with Code, Trace {

FILE: modules/basic_system/app/lib/news/cacheable.dart
  function save (line 8) | FutureOr<bool> save(V po)
  function find (line 10) | FutureOr<V?> find({bool shouldRemove = true})
  function remove (line 12) | FutureOr<bool> remove()
  function find (line 25) | FutureOr<V?> find({bool shouldRemove = true})
  function save (line 50) | FutureOr<bool> save(V po)
  function remove (line 56) | FutureOr<bool> remove()
  class TimeoutPo (line 61) | class TimeoutPo extends Po {
    method toJson (line 73) | Map<String, dynamic> toJson()

FILE: modules/basic_system/app/lib/view/about/about_app_page.dart
  class AboutAppPage (line 12) | class AboutAppPage extends StatelessWidget {
    method build (line 16) | Widget build(BuildContext context)
    method _buildBar (line 67) | Widget _buildBar(BuildContext context)
    method _buildInfo (line 110) | Widget _buildInfo()
  class InfoPanel (line 197) | class InfoPanel extends StatelessWidget {
    method build (line 205) | Widget build(BuildContext context)

FILE: modules/basic_system/app/lib/view/about/about_me_page.dart
  class AboutMePage (line 10) | class AboutMePage extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)
    method _buildBar (line 64) | Widget _buildBar(BuildContext context)
    method _buildInfo (line 105) | Widget _buildInfo()
    method _buildLinkIcon (line 142) | Wrap _buildLinkIcon()

FILE: modules/basic_system/app/lib/view/about/version_info.dart
  class VersionInfo (line 14) | class VersionInfo extends StatelessWidget {
    method build (line 18) | Widget build(BuildContext context)
    method _buildTop (line 49) | Widget _buildTop()
    method _buildCenter (line 68) | Widget _buildCenter(BuildContext context)
    method _nextIcon (line 106) | Widget _nextIcon(BuildContext context)
    method buildBottom (line 109) | Widget buildBottom(BuildContext context)
    method _launchURL (line 138) | void _launchURL(String url)

FILE: modules/basic_system/app/lib/view/account/desk/desk_account_page.dart
  class DeskAccountPage (line 11) | class DeskAccountPage extends StatefulWidget {
    method createState (line 15) | State<DeskAccountPage> createState()
  class _DeskAccountPageState (line 18) | class _DeskAccountPageState extends State<DeskAccountPage>
    method initState (line 24) | void initState()
    method build (line 30) | Widget build(BuildContext context)

FILE: modules/basic_system/app/lib/view/account/desk/sliver_cellection_panel.dart
  class SliverCollectionPanel (line 5) | class SliverCollectionPanel extends StatelessWidget {
    method build (line 9) | Widget build(BuildContext context)

FILE: modules/basic_system/app/lib/view/account/desk/sliver_list_panel.dart
  class SliverListPanel (line 8) | class SliverListPanel extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)

FILE: modules/basic_system/app/lib/view/account/desk/sliver_share_panel.dart
  class SliverSharePanel (line 3) | class SliverSharePanel extends StatelessWidget {
    method build (line 7) | Widget build(BuildContext context)

FILE: modules/basic_system/app/lib/view/account/desk/user_header.dart
  class UserHeader (line 4) | class UserHeader extends StatelessWidget {
    method build (line 8) | Widget build(BuildContext context)

FILE: modules/basic_system/app/lib/view/data_manage/data_manage_page.dart
  class DataManagePage (line 24) | class DataManagePage extends StatelessWidget {
    method build (line 28) | Widget build(BuildContext context)
    method _doUploadCategoryData (line 88) | void _doUploadCategoryData(BuildContext context)
    method _doSync (line 107) | void _doSync(BuildContext context)

FILE: modules/basic_system/app/lib/view/setting/app_style_setting.dart
  function showAppStyleSelectDialog (line 11) | void showAppStyleSelectDialog(BuildContext context)
  class AppThemeSettingDialog (line 20) | class AppThemeSettingDialog extends StatelessWidget {
    method build (line 27) | Widget build(BuildContext context)
    method _buildItem (line 57) | Widget? _buildItem(BuildContext context, int index)
    method _onSelect (line 68) | void _onSelect(BuildContext context, int index)

FILE: modules/basic_system/app/lib/view/setting/code_style_setting.dart
  class CodeStyleSettingPage (line 11) | class CodeStyleSettingPage extends StatelessWidget {
    method build (line 32) | Widget build(BuildContext context)
    method _buildFontCell (line 41) | Widget _buildFontCell(

FILE: modules/basic_system/app/lib/view/setting/font_setting.dart
  class FontSettingPage (line 10) | class FontSettingPage extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)
    method _buildFontCell (line 23) | Widget _buildFontCell(
  class FontCell (line 44) | class FontCell extends StatelessWidget {
    method build (line 57) | Widget build(BuildContext context)

FILE: modules/basic_system/app/lib/view/setting/language_setting.dart
  class LanguageSettingPage (line 6) | class LanguageSettingPage extends StatelessWidget {
    method build (line 10) | Widget build(BuildContext context)
  class LanguageSetting (line 20) | class LanguageSetting extends StatelessWidget {
    method build (line 24) | Widget build(BuildContext context)
  class LanguageSwitchTile (line 50) | class LanguageSwitchTile extends StatelessWidget {
    method build (line 54) | Widget build(BuildContext context)

FILE: modules/basic_system/app/lib/view/setting/setting_page.dart
  class SettingPage (line 10) | class SettingPage extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)
    method _buildShowOver (line 110) | Widget _buildShowOver(BuildContext context)
    method _nextIcon (line 125) | Widget _nextIcon(BuildContext context)
  class VersionTiled (line 129) | class VersionTiled extends StatelessWidget {
    method build (line 133) | Widget build(BuildContext context)
  class AppUpgradeTips (line 157) | class AppUpgradeTips extends StatelessWidget {
    method build (line 163) | Widget build(BuildContext context)

FILE: modules/basic_system/app/lib/view/setting/theme_color_setting.dart
  class ThemeColorSettingPage (line 10) | class ThemeColorSettingPage extends StatelessWidget {
    method build (line 15) | Widget build(BuildContext context)
    method _buildCell (line 25) | Widget _buildCell(
    method colorString (line 90) | String colorString(Color color)

FILE: modules/basic_system/app/lib/view/setting/theme_model_setting.dart
  class ThemeModelSetting (line 7) | class ThemeModelSetting extends StatelessWidget {
    method build (line 11) | Widget build(BuildContext context)

FILE: modules/basic_system/app/lib/view/unit_todo/attr_unit_page.dart
  class AttrUnitPage (line 4) | class AttrUnitPage extends StatelessWidget {
    method build (line 12) | Widget build(BuildContext context)
    method _buildShader (line 69) | Shader _buildShader(Rect bounds, Color color)
    method buildPower (line 76) | Widget buildPower()

FILE: modules/basic_system/app/lib/view/unit_todo/layout_unit_page.dart
  class LayoutUnitPage (line 7) | class LayoutUnitPage extends StatelessWidget {
    method build (line 18) | Widget build(BuildContext context)
    method _buildShader (line 76) | Shader _buildShader(Rect bounds, Color color)
    method buildPlan (line 83) | Widget buildPlan()
    method buildPower (line 101) | Widget buildPower()

FILE: modules/basic_system/app/lib/view/unit_todo/paint_unit_page.dart
  class PaintUnitPage (line 5) | class PaintUnitPage extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)
    method _buildShader (line 71) | Shader _buildShader(Rect bounds, Color color)
    method buildPlan (line 78) | Widget buildPlan()
    method buildPower (line 96) | Widget buildPower()

FILE: modules/basic_system/app/lib/view/unit_todo/point_unit_page.dart
  class BugUnitPage (line 5) | class BugUnitPage extends StatelessWidget {
    method build (line 15) | Widget build(BuildContext context)
    method _buildShader (line 77) | Shader _buildShader(Rect bounds, Color color)
    method buildPlan (line 84) | Widget buildPlan()
    method buildPower (line 102) | Widget buildPower()

FILE: modules/basic_system/app/lib/view/wrapper/overlay_tool_wrapper.dart
  class OverlayToolWrapper (line 9) | class OverlayToolWrapper extends StatefulWidget {
    method createState (line 15) | OverlayToolWrapperState createState()
    method of (line 17) | OverlayToolWrapperState of(BuildContext context,
  class OverlayToolWrapperState (line 30) | class OverlayToolWrapperState extends State<OverlayToolWrapper>
    method initState (line 49) | void initState()
    method _buildFloating (line 78) | Widget _buildFloating()
    method _buildCenter (line 99) | Widget _buildCenter()
    method _buildMenuItems (line 123) | List<Widget> _buildMenuItems(Color wrapColor)
    method _burstMenuItemClick (line 131) | bool _burstMenuItemClick(int index)
    method _toSetting (line 155) | void _toSetting()
    method _toWidget (line 159) | void _toWidget()
    method _toGalley (line 161) | void _toGalley()
    method _toPoint (line 165) | void _toPoint()
    method _doClose (line 170) | void _doClose()
    method _onPanEnd (line 178) | void _onPanEnd(details)
    method _listenAnimate (line 184) | void _listenAnimate()
    method _updatePosition (line 209) | void _updatePosition(DragUpdateDetails details)
    method showFloating (line 231) | void showFloating()
    method hideFloating (line 238) | void hideFloating()
    method build (line 246) | Widget build(BuildContext context)

FILE: modules/basic_system/authentication/lib/blocs/authentic/bloc.dart
  class AuthBloc (line 16) | class AuthBloc extends Bloc<AuthEvent, AuthState> {
    method _onAppStarted (line 27) | void _onAppStarted(AuthEvent event,  Emitter<AuthState> emit)
    method _persistToken (line 52) | Future<void> _persistToken(String token,SharedPreferences sp)
    method _removeToken (line 58) | Future<void> _removeToken(SharedPreferences sp)
    method _removeUser (line 63) | Future<void> _removeUser(SharedPreferences sp)
    method _persistUser (line 68) | Future<void> _persistUser(User user,SharedPreferences sp)
    method _onAuthByPassword (line 74) | FutureOr<void> _onAuthByPassword(AuthByPassword event, Emitter<AuthSta...
    method _onAuthByRegister (line 91) | FutureOr<void> _onAuthByRegister(AuthByRegister event, Emitter<AuthSta...
    method _onLoggedOut (line 107) | FutureOr<void> _onLoggedOut(Logout event, Emitter<AuthState> emit)

FILE: modules/basic_system/authentication/lib/blocs/authentic/event.dart
  class AuthEvent (line 5) | abstract class AuthEvent extends Equatable {
  class AppStarted (line 12) | class AppStarted extends AuthEvent {
  class AuthByPassword (line 17) | class AuthByPassword extends AuthEvent {
  class AuthByRegister (line 28) | class AuthByRegister extends AuthEvent{
  class Logout (line 35) | class Logout extends AuthEvent {
  class TokenDisabled (line 43) | class TokenDisabled extends AuthEvent {

FILE: modules/basic_system/authentication/lib/blocs/authentic/state.dart
  type AuthType (line 5) | enum AuthType{
  class AuthState (line 12) | abstract class AuthState extends Equatable {
  class AuthInitial (line 18) | class AuthInitial extends AuthState {
  class AuthFailure (line 23) | class AuthFailure extends AuthState {
    method toString (line 32) | String toString()
  class LogOuted (line 38) | class LogOuted extends AuthState {}
  class AuthSuccess (line 40) | class AuthSuccess extends AuthState {
    method toString (line 46) | String toString()
  class AuthLoading (line 51) | class AuthLoading extends AuthState {

FILE: modules/basic_system/authentication/lib/blocs/user/bloc.dart
  class UserBloc (line 5) | class UserBloc extends Cubit<UserPerformance> {

FILE: modules/basic_system/authentication/lib/blocs/user/state.dart
  class UserPerformance (line 3) | class UserPerformance {
    method copyWith (line 39) | UserPerformance copyWith({
    method fromJson (line 61) | UserPerformance fromJson(Map<String, dynamic> map)
    method toJson (line 71) | Map<String, dynamic> toJson()

FILE: modules/basic_system/authentication/lib/models/user.dart
  class User (line 15) | class User extends Equatable {
    method toJson (line 45) | Map toJson()

FILE: modules/basic_system/authentication/lib/repository/auth_repository.dart
  class AuthRepository (line 5) | abstract class AuthRepository {
    method login (line 8) | Future<TaskResult<User>> login({
    method register (line 15) | Future<TaskResult<bool>> register({
    method sendEmail (line 21) | Future<TaskResult<String>> sendEmail({

FILE: modules/basic_system/authentication/lib/repository/impl/http_auth_repository.dart
  class HttpAuthRepository (line 12) | class HttpAuthRepository implements AuthRepository {
    method login (line 14) | Future<TaskResult<User>> login({
    method register (line 52) | Future<TaskResult<bool>> register({
    method sendEmail (line 73) | Future<TaskResult<String>> sendEmail({required String email})

FILE: modules/basic_system/authentication/lib/views/authentic_widget.dart
  class AuthenticWidget (line 10) | class AuthenticWidget extends StatelessWidget {
    method build (line 19) | Widget build(BuildContext context)

FILE: modules/basic_system/authentication/lib/views/mobile/login/login_form.dart
  class LoginFrom (line 11) | class LoginFrom extends StatefulWidget {
    method createState (line 15) | _LoginFromState createState()
  class _LoginFromState (line 18) | class _LoginFromState extends State<LoginFrom> {
    method build (line 25) | Widget build(BuildContext context)
    method _doLogIn (line 89) | void _doLogIn()
    method buildUsernameInput (line 99) | Widget buildUsernameInput()
    method buildPasswordInput (line 143) | Widget buildPasswordInput()
    method buildOtherLogin (line 188) | Widget buildOtherLogin()
    method _buildBtnByState (line 223) | Widget _buildBtnByState(BuildContext context, AuthState state)
    method _listenLoginState (line 257) | void _listenLoginState(BuildContext context, AuthState state)
    method _preValidate (line 267) | bool _preValidate(String username, String password)

FILE: modules/basic_system/authentication/lib/views/mobile/login/login_page.dart
  class LoginPage (line 24) | class LoginPage extends StatelessWidget {
    method build (line 28) | Widget build(BuildContext context)

FILE: modules/basic_system/authentication/lib/views/mobile/register/arc_clipper.dart
  class ArcClipper (line 9) | class ArcClipper extends CustomClipper<Path> {
    method getClip (line 15) | Path getClip(Size size)
    method shouldReclip (line 27) | bool shouldReclip(ArcClipper oldClipper)
  class ArcBackground (line 30) | class ArcBackground extends StatelessWidget {
    method build (line 38) | Widget build(BuildContext context)
  class UnitArcBackground (line 55) | class UnitArcBackground extends StatelessWidget {
    method build (line 60) | Widget build(BuildContext context)

FILE: modules/basic_system/authentication/lib/views/mobile/register/register_page.dart
  class RegisterPage (line 14) | class RegisterPage extends StatefulWidget {
    method createState (line 18) | _RegisterPageState createState()
  class _RegisterPageState (line 21) | class _RegisterPageState extends State<RegisterPage> {
    method initState (line 30) | void initState()
    method build (line 42) | Widget build(BuildContext context)
    method buildInputWithSend (line 94) | Stack buildInputWithSend()
    method _checkEmail (line 134) | bool _checkEmail(String email)
    method _buildBtn (line 140) | Widget _buildBtn()
    method _doRegister (line 150) | void _doRegister()
    method _build (line 155) | Widget _build(BuildContext context, state)
    method _listener (line 180) | void _listener(BuildContext context, AuthState state)
    method _listenerLogin (line 194) | void _listenerLogin(BuildContext context, AuthState state)

FILE: modules/basic_system/authentication/lib/views/mobile/register/send_code.dart
  class CountDownWidget (line 9) | class CountDownWidget extends StatefulWidget {
    method createState (line 15) | _CountDownWidgetState createState()
  class _CountDownWidgetState (line 18) | class _CountDownWidgetState extends State<CountDownWidget> {
    method initState (line 24) | void initState()
    method dispose (line 29) | void dispose()
    method build (line 35) | Widget build(BuildContext context)
    method _update (line 49) | void _update(Timer timer)

FILE: modules/basic_system/authentication/lib/views/mobile/user/page_item.dart
  class MePageItem (line 11) | class MePageItem extends StatelessWidget {
    method build (line 17) | Widget build(BuildContext context)
    method _buildChild (line 25) | Widget _buildChild(BuildContext context)
    method _buildItem (line 78) | Widget _buildItem(

FILE: modules/basic_system/authentication/lib/views/mobile/user/support_me.dart
  class SupportMe (line 4) | class SupportMe extends StatelessWidget {
    method build (line 8) | Widget build(BuildContext context)

FILE: modules/basic_system/authentication/lib/views/mobile/user/unit_drawer_header.dart
  class UnitDrawerHeader (line 7) | class UnitDrawerHeader extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)

FILE: modules/basic_system/authentication/lib/views/mobile/user/user_account.dart
  class UserAccountPage (line 14) | class UserAccountPage extends StatelessWidget {
    method build (line 18) | Widget build(BuildContext context)
    method _showPicker (line 320) | void _showPicker(BuildContext context)
  class UserItemPanel (line 380) | class UserItemPanel extends StatelessWidget {
    method build (line 389) | Widget build(BuildContext context)

FILE: modules/basic_system/authentication/lib/views/mobile/user/user_page.dart
  class UserPage (line 18) | class UserPage extends StatelessWidget {
    method build (line 22) | Widget build(BuildContext context)
    method _buildByState (line 76) | Widget _buildByState(BuildContext context, AuthState state)
    method _buildAvatarByState (line 96) | Widget _buildAvatarByState(BuildContext context, AuthState state)

FILE: modules/basic_system/components/lib/flutter_ui/diy_flexible_space_bar.dart
  type FractionalBuilder (line 51) | typedef FractionalBuilder = Widget Function(double t);
  class DiyFlexibleSpaceBar (line 53) | class DiyFlexibleSpaceBar extends StatefulWidget {
    method createState (line 121) | State<DiyFlexibleSpaceBar> createState()
  class _DiyFlexibleSpaceBarState (line 124) | class _DiyFlexibleSpaceBarState extends State<DiyFlexibleSpaceBar> {
    method _getEffectiveCenterTitle (line 125) | bool _getEffectiveCenterTitle(ThemeData theme)
    method _getTitleAlignment (line 142) | Alignment _getTitleAlignment(bool effectiveCenterTitle)
    method _getCollapsePadding (line 156) | double _getCollapsePadding(double t, FlexibleSpaceBarSettings settings)
    method build (line 169) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/flutter_ui/no_div_expansion_tile.dart
  class NoBorderExpansionTile (line 25) | class NoBorderExpansionTile extends StatefulWidget {
    method createState (line 78) | _NoBorderExpansionTileState createState()
  class _NoBorderExpansionTileState (line 81) | class _NoBorderExpansionTileState extends State<NoBorderExpansionTile> w...
    method initState (line 101) | void initState()
    method dispose (line 118) | void dispose()
    method _handleTap (line 123) | void _handleTap()
    method _buildChildren (line 143) | Widget _buildChildren(BuildContext context, Widget? child)
    method didChangeDependencies (line 177) | void didChangeDependencies()
    method build (line 193) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/flutter_ui/toly_date_picker.dart
  function showDatePicker (line 115) | Future<DateTime?> showDatePicker({
  class DatePickerDialog (line 220) | class DatePickerDialog extends StatefulWidget {
    method createState (line 344) | State<DatePickerDialog> createState()
  class _DatePickerDialogState (line 347) | class _DatePickerDialogState extends State<DatePickerDialog>
    method restoreState (line 360) | void restoreState(RestorationBucket? oldBucket, bool initialRestore)
    method _handleOk (line 369) | void _handleOk()
    method _handleCancel (line 382) | void _handleCancel()
    method _handleEntryModeToggle (line 386) | void _handleEntryModeToggle()
    method _handleDateChanged (line 405) | void _handleDateChanged(DateTime date)
    method _dialogSize (line 411) | Size _dialogSize(BuildContext context)
    method build (line 440) | Widget build(BuildContext context)
    method calendarDatePicker (line 479) | CalendarDatePicker calendarDatePicker()
    method inputDatePicker (line 492) | Form inputDatePicker()
  class _RestorableDatePickerEntryMode (line 626) | class _RestorableDatePickerEntryMode
    method createDefaultValue (line 635) | DatePickerEntryMode createDefaultValue()
    method didUpdateValue (line 638) | void didUpdateValue(DatePickerEntryMode? oldValue)
    method fromPrimitives (line 644) | DatePickerEntryMode fromPrimitives(Object? data)
    method toPrimitives (line 648) | Object? toPrimitives()
  class _RestorableAutovalidateMode (line 654) | class _RestorableAutovalidateMode extends RestorableValue<AutovalidateMo...
    method createDefaultValue (line 662) | AutovalidateMode createDefaultValue()
    method didUpdateValue (line 665) | void didUpdateValue(AutovalidateMode? oldValue)
    method fromPrimitives (line 671) | AutovalidateMode fromPrimitives(Object? data)
    method toPrimitives (line 675) | Object? toPrimitives()
  class _DatePickerHeader (line 689) | class _DatePickerHeader extends StatelessWidget {
    method build (line 737) | Widget build(BuildContext context)
  function showDateRangePicker (line 926) | Future<DateTimeRange?> showDateRangePicker({
  function _formatRangeStartDate (line 1045) | String _formatRangeStartDate(MaterialLocalizations localizations,
  function _formatRangeEndDate (line 1060) | String _formatRangeEndDate(MaterialLocalizations localizations,
  class DateRangePickerDialog (line 1080) | class DateRangePickerDialog extends StatefulWidget {
    method createState (line 1221) | State<DateRangePickerDialog> createState()
  class _DateRangePickerDialogState (line 1224) | class _DateRangePickerDialogState extends State<DateRangePickerDialog>
    method restoreState (line 1241) | void restoreState(RestorationBucket? oldBucket, bool initialRestore)
    method _handleOk (line 1248) | void _handleOk()
    method _handleCancel (line 1266) | void _handleCancel()
    method _handleEntryModeToggle (line 1270) | void _handleEntryModeToggle()
    method _handleStartDateChanged (line 1309) | void _handleStartDateChanged(DateTime? date)
    method _handleEndDateChanged (line 1313) | void _handleEndDateChanged(DateTime? date)
    method build (line 1321) | Widget build(BuildContext context)
  class _CalendarRangePickerDialog (line 1458) | class _CalendarRangePickerDialog extends StatelessWidget {
    method build (line 1489) | Widget build(BuildContext context)
  class _CalendarDateRangePicker (line 1617) | class _CalendarDateRangePicker extends StatefulWidget {
    method createState (line 1671) | _CalendarDateRangePickerState createState()
  class _CalendarDateRangePickerState (line 1675) | class _CalendarDateRangePickerState extends State<_CalendarDateRangePick...
    method initState (line 1684) | void initState()
    method dispose (line 1704) | void dispose()
    method _scrollListener (line 1709) | void _scrollListener()
    method _vibrate (line 1724) | void _vibrate()
    method _updateSelection (line 1747) | void _updateSelection(DateTime date)
    method _buildMonthItem (line 1766) | Widget _buildMonthItem(
    method build (line 1794) | Widget build(BuildContext context)
  class _CalendarKeyboardNavigator (line 1840) | class _CalendarKeyboardNavigator extends StatefulWidget {
    method createState (line 1854) | _CalendarKeyboardNavigatorState createState()
  class _CalendarKeyboardNavigatorState (line 1858) | class _CalendarKeyboardNavigatorState
    method initState (line 1877) | void initState()
    method dispose (line 1892) | void dispose()
    method _handleGridFocusChange (line 1897) | void _handleGridFocusChange(bool focused)
    method _handleGridNextFocus (line 1906) | void _handleGridNextFocus(NextFocusIntent intent)
    method _handleGridPreviousFocus (line 1912) | void _handleGridPreviousFocus(PreviousFocusIntent intent)
    method _handleDirectionFocus (line 1926) | void _handleDirectionFocus(DirectionalFocusIntent intent)
    method _dayDirectionOffset (line 1946) | int _dayDirectionOffset(
    method _nextDateInDirection (line 1959) | DateTime? _nextDateInDirection(DateTime date, TraversalDirection direc...
    method build (line 1971) | Widget build(BuildContext context)
  class _FocusedDate (line 1990) | class _FocusedDate extends InheritedWidget {
    method updateShouldNotify (line 2001) | bool updateShouldNotify(_FocusedDate oldWidget)
    method of (line 2006) | _FocusedDate? of(BuildContext context)
  class _DayHeaders (line 2011) | class _DayHeaders extends StatelessWidget {
    method _getDayHeaders (line 2032) | List<Widget> _getDayHeaders(
    method build (line 2048) | Widget build(BuildContext context)
  class _MonthItemGridDelegate (line 2080) | class _MonthItemGridDelegate extends SliverGridDelegate {
    method getLayout (line 2084) | SliverGridLayout getLayout(SliverConstraints constraints)
    method shouldRelayout (line 2097) | bool shouldRelayout(_MonthItemGridDelegate oldDelegate)
  class _MonthSliverGridLayout (line 2102) | class _MonthSliverGridLayout extends SliverGridLayout {
    method getMinChildIndexForScrollOffset (line 2151) | int getMinChildIndexForScrollOffset(double scrollOffset)
    method getMaxChildIndexForScrollOffset (line 2156) | int getMaxChildIndexForScrollOffset(double scrollOffset)
    method _getCrossAxisOffset (line 2161) | double _getCrossAxisOffset(double crossAxisStart, bool isPadding)
    method getGeometryForChildIndex (line 2171) | SliverGridGeometry getGeometryForChildIndex(int index)
    method computeMaxScrollOffset (line 2187) | double computeMaxScrollOffset(int childCount)
  class _MonthItem (line 2199) | class _MonthItem extends StatefulWidget {
    method createState (line 2272) | _MonthItemState createState()
  class _MonthItemState (line 2275) | class _MonthItemState extends State<_MonthItem> {
    method initState (line 2280) | void initState()
    method didChangeDependencies (line 2292) | void didChangeDependencies()
    method dispose (line 2303) | void dispose()
    method _highlightColor (line 2310) | Color _highlightColor(BuildContext context)
    method _dayFocusChanged (line 2314) | void _dayFocusChanged(bool focused)
    method _buildDayItem (line 2340) | Widget _buildDayItem(BuildContext context, DateTime dayToBuild,
    method _buildEdgeContainer (line 2459) | Widget _buildEdgeContainer(BuildContext context, bool isHighlighted)
    method build (line 2464) | Widget build(BuildContext context)
  type _HighlightPainterStyle (line 2580) | enum _HighlightPainterStyle {
  class _HighlightPainter (line 2600) | class _HighlightPainter extends CustomPainter {
    method paint (line 2612) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 2650) | bool shouldRepaint(CustomPainter oldDelegate)
  class _InputDateRangePickerDialog (line 2653) | class _InputDateRangePickerDialog extends StatelessWidget {
    method _formatDateRange (line 2678) | String _formatDateRange(
    method build (line 2695) | Widget build(BuildContext context)
  class _InputDateRangePicker (line 2782) | class _InputDateRangePicker extends StatefulWidget {
    method createState (line 2872) | _InputDateRangePickerState createState()
  class _InputDateRangePickerState (line 2877) | class _InputDateRangePickerState extends State<_InputDateRangePicker> {
    method initState (line 2889) | void initState()
    method dispose (line 2898) | void dispose()
    method didChangeDependencies (line 2905) | void didChangeDependencies()
    method validate (line 2928) | bool validate()
    method _parseDate (line 2944) | DateTime? _parseDate(String? text)
    method _validateDate (line 2950) | String? _validateDate(DateTime? date)
    method _updateController (line 2962) | void _updateController(
    method _handleStartChanged (line 2975) | void _handleStartChanged(String text)
    method _handleEndChanged (line 2986) | void _handleEndChanged(String text)
    method build (line 2998) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/default/empty_search_page.dart
  class NotSearchPage (line 3) | class NotSearchPage extends StatelessWidget {
    method build (line 8) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/default/empty_shower.dart
  class EmptyShower (line 7) | class EmptyShower extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/default/error_page.dart
  class ErrorPage (line 2) | class ErrorPage extends StatelessWidget {
    method build (line 7) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/default/error_shower.dart
  class ErrorShower (line 8) | class ErrorShower extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/default/loading_shower.dart
  class LoadingShower (line 9) | class LoadingShower extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/default/no_more_widget.dart
  class NoMoreWidget (line 7) | class NoMoreWidget extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/refresh/refresh_config_wrapper.dart
  class RefreshConfigWrapper (line 7) | class RefreshConfigWrapper extends StatelessWidget {
    method build (line 12) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/refresh/toly_refresh_indicator.dart
  class TolyRefreshIndicator (line 9) | class TolyRefreshIndicator extends RefreshIndicator {
    method createState (line 13) | State<StatefulWidget> createState()
  class _TolyRefreshIndicatorState (line 16) | class _TolyRefreshIndicatorState
    method initState (line 23) | void initState()
    method onModeChange (line 31) | void onModeChange(RefreshStatus? mode)
    method readyToRefresh (line 45) | Future<void> readyToRefresh()
    method buildContent (line 64) | Widget buildContent(BuildContext context, RefreshStatus mode)
    method onOffsetChange (line 94) | void onOffsetChange(double offset)

FILE: modules/basic_system/components/lib/project_ui/time_line/flutter_unit_time_line.dart
  class FlutterUnitTimeLine (line 9) | class FlutterUnitTimeLine extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)
  class TimeLineNode (line 164) | class TimeLineNode extends StatelessWidget {
    method build (line 176) | Widget build(BuildContext context)
    method _buildDecoration (line 203) | Widget _buildDecoration(Color themeColor)
    method _buildCenterWidget (line 214) | Widget _buildCenterWidget(Color themeColor)
  class DashDecoration (line 266) | class DashDecoration extends Decoration {
    method createBoxPainter (line 281) | BoxPainter createBoxPainter([VoidCallback? onChanged])
  class DashBoxPainter (line 285) | class DashBoxPainter extends BoxPainter {
    method paint (line 291) | void paint(Canvas canvas, Offset offset, ImageConfiguration configurat...

FILE: modules/basic_system/components/lib/project_ui/time_line/model/time_node.dart
  class TimeNode (line 1) | class TimeNode {
    method toString (line 16) | String toString()

FILE: modules/basic_system/components/lib/project_ui/top_bar/desk_account_top_bar.dart
  class DeskAccountTopBar (line 4) | class DeskAccountTopBar extends StatelessWidget {
    method build (line 10) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/top_bar/desk_knowledge_top_bar.dart
  class DeskKnowledgeTabTopBar (line 5) | class DeskKnowledgeTabTopBar extends StatefulWidget {
    method createState (line 14) | State<DeskKnowledgeTabTopBar> createState()
  class _DeskKnowledgeTabTopBarState (line 17) | class _DeskKnowledgeTabTopBarState extends State<DeskKnowledgeTabTopBar>
    method initState (line 22) | void initState()
    method didUpdateWidget (line 28) | void didUpdateWidget(covariant DeskKnowledgeTabTopBar oldWidget)
    method build (line 37) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/top_bar/desk_simple_top_bar.dart
  class SimpleDeskTopBar (line 4) | class SimpleDeskTopBar extends StatelessWidget {
    method build (line 10) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/top_bar/desk_tab_top_bar.dart
  class DeskTabTopBar (line 6) | class DeskTabTopBar extends StatefulWidget {
    method createState (line 14) | State<DeskTabTopBar> createState()
  class _DeskTabTopBarState (line 17) | class _DeskTabTopBarState extends State<DeskTabTopBar>  with TickerProvi...
    method initState (line 21) | void initState()
    method didUpdateWidget (line 27) | void didUpdateWidget(covariant DeskTabTopBar oldWidget)
    method build (line 36) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/unit_app_bar.dart
  class UnitAppbar (line 5) | class UnitAppbar extends StatelessWidget implements PreferredSizeWidget{
    method build (line 13) | Widget build(BuildContext context)

FILE: modules/basic_system/components/lib/project_ui/wrapper/honour_wrapper.dart
  class HonourWrapper (line 9) | class HonourWrapper extends StatefulWidget {
    method createState (line 15) | _HonourWrapperState createState()
  class _HonourWrapperState (line 18) | class _HonourWrapperState extends State<HonourWrapper>
    method initState (line 23) | void initState()
    method dispose (line 30) | void dispose()
    method build (line 36) | Widget build(BuildContext context)
  class HonourPainter (line 53) | class HonourPainter extends CustomPainter {
    method paint (line 73) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 107) | bool shouldRepaint(covariant HonourPainter oldDelegate)

FILE: modules/basic_system/fx_updater/lib/bloc/bloc.dart
  class UpgradeBloc (line 10) | class UpgradeBloc extends Bloc<UpdateEvent, UpdateState> {
    method _onCheckUpdate (line 19) | void _onCheckUpdate(CheckUpdate event, Emitter<UpdateState> emit)
    method _onDownloadEvent (line 37) | void _onDownloadEvent(DownloadEvent event, Emitter<UpdateState> emit)
    method onProgressChange (line 42) | void onProgressChange(double progress)
    method _onProgressChangeEvent (line 52) | FutureOr<void> _onProgressChangeEvent(

FILE: modules/basic_system/fx_updater/lib/bloc/event.dart
  class UpdateEvent (line 5) | sealed class UpdateEvent extends Equatable {
  class CheckUpdate (line 10) | class CheckUpdate extends UpdateEvent {
  class DownloadEvent (line 20) | class DownloadEvent extends UpdateEvent {
  class ProgressChangeEvent (line 29) | class ProgressChangeEvent extends UpdateEvent {

FILE: modules/basic_system/fx_updater/lib/bloc/state.dart
  class UpdateState (line 5) | sealed class UpdateState extends Equatable {
  class NoUpdateState (line 9) | class NoUpdateState extends UpdateState {
  class CheckLoadingState (line 19) | class CheckLoadingState extends UpdateState {
  class UpdateErrorState (line 27) | class UpdateErrorState extends UpdateState {
    method toString (line 36) | String toString()
  class ShouldUpdateState (line 41) | class ShouldUpdateState extends UpdateState {
    method toString (line 56) | String toString()
    method copyWith (line 63) | UpdateState copyWith({double? progress})

FILE: modules/basic_system/fx_updater/lib/repository/api/upgrade_api.dart
  type OnProgressChange (line 4) | typedef OnProgressChange = void Function(double progress);
  class UpgradeApi (line 6) | abstract class UpgradeApi with CheckUpgrade {}
  function fetch (line 9) | Future<ApiRet<AppInfo>> fetch(int appId, String locale)

FILE: modules/basic_system/fx_updater/lib/repository/model/app_info.dart
  class AppInfo (line 3) | class AppInfo {
    method toString (line 29) | String toString()
    method shouldUpgrade (line 33) | bool shouldUpgrade(String current)
  function needsUpdate (line 36) | bool needsUpdate(
  function parseVersion (line 43) | List<int> parseVersion(String version)

FILE: modules/basic_system/fx_updater/lib/strategy/android_strategy.dart
  class AndroidUpdateStrategy (line 7) | class AndroidUpdateStrategy with DownloadMixin implements UpdateStrategy {
    method update (line 9) | Future<void> update(String url, OnProgressChange onProgress)

FILE: modules/basic_system/fx_updater/lib/strategy/desktop_strategy.dart
  class DesktopUpdateStrategy (line 6) | class DesktopUpdateStrategy with DownloadMixin implements UpdateStrategy {
    method update (line 8) | Future<void> update(String url, OnProgressChange onProgress)

FILE: modules/basic_system/fx_updater/lib/strategy/download_mixin.dart
  function downloadFile (line 8) | Future<String> downloadFile(String url, OnProgressChange onProgress)

FILE: modules/basic_system/fx_updater/lib/strategy/macos_strategy.dart
  class MacOSUpdateStrategy (line 5) | class MacOSUpdateStrategy implements UpdateStrategy {
    method update (line 7) | Future<void> update(String url, OnProgressChange onProgress)

FILE: modules/basic_system/fx_updater/lib/strategy/update_strategy.dart
  class UpdateStrategy (line 7) | abstract class UpdateStrategy {
    method update (line 8) | Future<void> update(String url, OnProgressChange onProgress)
  class UpdateStrategyFactory (line 11) | class UpdateStrategyFactory {
    method create (line 12) | UpdateStrategy create()

FILE: modules/basic_system/fx_updater/lib/views/app_update_panel.dart
  class AppUpdatePanel (line 10) | class AppUpdatePanel extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)
    method _buildProgress (line 21) | Widget _buildProgress(BuildContext context, double progress, int appSize)
    method _buildByUpdateState (line 58) | Widget _buildByUpdateState(BuildContext context, UpdateState state)
    method _tapByState (line 96) | void _tapByState(UpdateState state, BuildContext context)
    method _listenerByUpdateState (line 124) | void _listenerByUpdateState(BuildContext context, UpdateState state)
    method convertFileSize (line 141) | String convertFileSize(int size)

FILE: modules/basic_system/fx_updater/lib/views/dialog/top_bar.dart
  class UpdateTopBar (line 3) | class UpdateTopBar extends StatelessWidget {
    method build (line 8) | Widget build(BuildContext context)

FILE: modules/basic_system/fx_updater/lib/views/dialog/update_dialog.dart
  class UpdateDialog (line 11) | class UpdateDialog extends StatefulWidget {
    method createState (line 26) | State<UpdateDialog> createState()
  class _UpdateDialogState (line 29) | class _UpdateDialogState extends State<UpdateDialog> {
    method build (line 39) | Widget build(BuildContext context)
    method buildContent (line 71) | Widget buildContent(UpdateState state)
    method downloadProgress (line 81) | Widget downloadProgress(double progress)
    method convertFileSize (line 121) | String convertFileSize(int? size)
    method _buildUpdateInfo (line 133) | Widget _buildUpdateInfo()
    method buildTitle (line 158) | Widget buildTitle(UpdateState state)
    method buildButtons (line 169) | Widget buildButtons(UpdateState state)
    method upgradeWindows (line 259) | void upgradeWindows()

FILE: modules/basic_system/fx_updater/lib/views/update_red_point.dart
  class UpdateRedPoint (line 9) | class UpdateRedPoint extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)

FILE: modules/basic_system/fx_updater/lib/views/version_shower.dart
  class VersionShower (line 4) | class VersionShower extends StatefulWidget {
    method createState (line 8) | _VersionShowerState createState()
  class _VersionShowerState (line 11) | class _VersionShowerState extends State<VersionShower> {
    method initState (line 15) | void initState()
    method build (line 21) | Widget build(BuildContext context)
    method _initVersion (line 25) | void _initVersion()

FILE: modules/basic_system/l10n/lib/enum/language.dart
  type Language (line 3) | enum Language {

FILE: modules/basic_system/l10n/lib/gen_l10n/app_localizations.dart
  class AppLocalizations (line 64) | abstract class AppLocalizations {
    method of (line 69) | AppLocalizations of(BuildContext context)
  class _AppLocalizationsDelegate (line 1209) | class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocaliz...
    method load (line 1213) | Future<AppLocalizations> load(Locale locale)
    method isSupported (line 1218) | bool isSupported(Locale locale)
    method shouldReload (line 1221) | bool shouldReload(_AppLocalizationsDelegate old)
  function lookupAppLocalizations (line 1224) | AppLocalizations lookupAppLocalizations(Locale locale)

FILE: modules/basic_system/l10n/lib/gen_l10n/app_localizations_en.dart
  class AppLocalizationsEn (line 6) | class AppLocalizationsEn extends AppLocalizations {

FILE: modules/basic_system/l10n/lib/gen_l10n/app_localizations_zh.dart
  class AppLocalizationsZh (line 6) | class AppLocalizationsZh extends AppLocalizations {

FILE: modules/basic_system/l10n/test/l10n_copy.dart
  function main (line 5) | void main()

FILE: modules/basic_system/l10n/test/l10n_test.dart
  function main (line 5) | void main()

FILE: modules/basic_system/storage/lib/src/app_storage.dart
  class AppStorage (line 7) | class AppStorage {
    method init (line 23) | Future<void> init()
    method close (line 29) | void close()

FILE: modules/basic_system/storage/lib/src/db_storage/flutter/article_db_store.dart
  class ArticleDbStore (line 9) | class ArticleDbStore extends FxDb {
    method onCreate (line 17) | Future<void> onCreate(Database db, int version)

FILE: modules/basic_system/storage/lib/src/db_storage/flutter/flutter_db_store.dart
  class FlutterDbStore (line 9) | class FlutterDbStore extends FxDb {
    method onCreate (line 17) | Future<void> onCreate(Database db, int version)
    method afterOpen (line 20) | void afterOpen(String dbpath)

FILE: modules/basic_system/storage/lib/src/db_storage/flutter_unit/dao/cache_dao.dart
  class CacheDao (line 8) | class CacheDao  with HasDatabase, DbTable{
    method insert (line 24) | Future<int> insert(CachePo po)
    method insertOrUpdate (line 30) | Future<int> insertOrUpdate(CachePo po)
    method shouldUpdate (line 41) | Future<bool> shouldUpdate(int id, int updateAt)
    method query (line 52) | Future<List<CachePo>> query({

FILE: modules/basic_system/storage/lib/src/db_storage/flutter_unit/flutter_unit_db_store.dart
  class FlutterUnitDbStore (line 6) | class FlutterUnitDbStore extends FxDb {
    method afterOpen (line 20) | void afterOpen(String dbpath)

FILE: modules/basic_system/storage/lib/src/db_storage/flutter_unit/model/cache_po.dart
  class CachePo (line 1) | class CachePo {
    method toJson (line 20) | Map<String,dynamic> toJson()

FILE: modules/basic_system/storage/lib/src/sp_storage/cao/app_config_cao.dart
  class AppConfigCao (line 7) | class AppConfigCao{
    method write (line 11) | Future<bool> write(AppConfigPo appConfigPo)
    method read (line 16) | Future<AppConfigPo> read()

FILE: modules/basic_system/storage/lib/src/sp_storage/models/app_config_po.dart
  class AppConfigPo (line 3) | class AppConfigPo {
    method toJson (line 40) | Map<String, dynamic> toJson()

FILE: modules/basic_system/storage/lib/src/sp_storage/sp_storage.dart
  class SpStorage (line 5) | class SpStorage {
    method initSp (line 20) | Future<void> initSp()

FILE: modules/basic_system/storage/test/db_storage_test.dart
  function main (line 4) | void main()

FILE: modules/basic_system/toly_ui/lib/adapter/platform_view_adapter.dart
  type WidthConditionFun (line 6) | typedef WidthConditionFun = bool Function(double width);
  type WidgetBuilder (line 7) | typedef WidgetBuilder = Widget Function(BuildContext context);
  type ViewAdapterType (line 9) | enum ViewAdapterType { width, platform }
  class PlatformViewAdapter (line 11) | class PlatformViewAdapter extends StatelessWidget {
    method build (line 24) | Widget build(BuildContext context)
    method phoneSize (line 42) | bool phoneSize(double size)
    method deskSize (line 46) | bool deskSize(double size)
  class WidthConditionBuilder (line 51) | class WidthConditionBuilder extends StatelessWidget {
    method build (line 62) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/button/feedback_widget.dart
  type FeedMode (line 9) | enum FeedMode {
  class FeedbackWidget (line 15) | class FeedbackWidget extends StatefulWidget {
    method createState (line 35) | _FeedBackState createState()
  class _FeedBackState (line 38) | class _FeedBackState extends State<FeedbackWidget> with SingleTickerProv...
    method initState (line 42) | void initState()
    method didUpdateWidget (line 61) | void didUpdateWidget(FeedbackWidget oldWidget)
    method dispose (line 69) | void dispose()
    method build (line 75) | Widget build(BuildContext context)
    method _buildByMode (line 93) | Widget _buildByMode(Widget? child, FeedMode mode)

FILE: modules/basic_system/toly_ui/lib/code/code_widget.dart
  class CodeWidget (line 10) | class CodeWidget extends StatelessWidget {
    method build (line 25) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/code/high_light_code.dart
  class Highlighter (line 20) | abstract class Highlighter {
    method format (line 27) | TextSpan format(String src)
  class CodeHighlighter (line 31) | class CodeHighlighter extends Highlighter {
    method format (line 46) | TextSpan format(String src)
    method _generateSpans (line 79) | bool _generateSpans()
    method _simplify (line 217) | void _simplify()
    method _firstLetterIsUpperCase (line 226) | bool _firstLetterIsUpperCase(String str)
  type _HighlightType (line 235) | enum _HighlightType {
  class _HighlightSpan (line 245) | class _HighlightSpan {
    method textForSpan (line 252) | String textForSpan(String src)
    method textStyle (line 256) | TextStyle? textStyle(HighlighterStyle? style)

FILE: modules/basic_system/toly_ui/lib/code/highlighter_style.dart
  class HighlighterStyle (line 11) | class HighlighterStyle {

FILE: modules/basic_system/toly_ui/lib/code/language/dart_languge.dart
  class DartLanguage (line 8) | class DartLanguage extends ProgramLanguage{
    method containsInTypes (line 35) | bool containsInTypes(String word)
    method containsKeywords (line 38) | bool containsKeywords(String word)

FILE: modules/basic_system/toly_ui/lib/code/language/language.dart
  class ProgramLanguage (line 5) | abstract class ProgramLanguage {
    method containsKeywords (line 10) | bool containsKeywords(String word)
    method containsInTypes (line 12) | bool containsInTypes(String word)

FILE: modules/basic_system/toly_ui/lib/decorations/round_rect_rab_indicator.dart
  class RoundRectTabIndicator (line 3) | class RoundRectTabIndicator extends Decoration {
    method lerpFrom (line 25) | Decoration? lerpFrom(Decoration? a, double t)
    method lerpTo (line 36) | Decoration? lerpTo(Decoration? b, double t)
    method createBoxPainter (line 47) | BoxPainter createBoxPainter([VoidCallback? onChanged])
    method _indicatorRectFor (line 51) | Rect _indicatorRectFor(Rect rect, TextDirection textDirection)
    method getClipPath (line 64) | Path getClipPath(Rect rect, TextDirection textDirection)
  class _UnderlinePainter (line 69) | class _UnderlinePainter extends BoxPainter {
    method paint (line 77) | void paint(Canvas canvas, Offset offset, ImageConfiguration configurat...

FILE: modules/basic_system/toly_ui/lib/default/loading/planet_loading.dart
  class PlateLoading (line 13) | class PlateLoading extends StatelessWidget {
    method build (line 17) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/dialog/alert_conform_dialog.dart
  class AlertConformDialog (line 5) | class AlertConformDialog extends StatelessWidget {
    method build (line 37) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/dialog/delete_message_panel.dart
  type AsyncTask (line 5) | typedef AsyncTask = Future<void> Function(BuildContext context);
  class DeleteMessagePanel (line 10) | class DeleteMessagePanel extends StatelessWidget {
    method build (line 29) | Widget build(BuildContext context)
  class MobileMessagePanel (line 111) | class MobileMessagePanel extends StatelessWidget {
    method build (line 132) | Widget build(BuildContext context)
  class AsyncButton (line 211) | class AsyncButton extends StatefulWidget {
    method createState (line 224) | State<AsyncButton> createState()
  class _AsyncButtonState (line 227) | class _AsyncButtonState extends State<AsyncButton> {
    method build (line 231) | Widget build(BuildContext context)
    method _doTask (line 246) | void _doTask()

FILE: modules/basic_system/toly_ui/lib/input/edit_panel.dart
  type ChangeCallback (line 3) | typedef ChangeCallback = void Function(String str);
  class EditPanel (line 6) | class EditPanel extends StatefulWidget {
    method createState (line 31) | _EditPanelState createState()
  class _EditPanelState (line 34) | class _EditPanelState extends State<EditPanel> {
    method initState (line 40) | void initState()
    method dispose (line 47) | void dispose()
    method build (line 53) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/input/icon_input.dart
  class IconInput (line 7) | class IconInput extends StatelessWidget {
    method build (line 15) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/input/input_button.dart
  type SubmitCallback (line 3) | typedef SubmitCallback = void Function(String str);
  class InputButtonConfig (line 5) | class InputButtonConfig {
  class InputButton (line 23) | class InputButton extends StatefulWidget {
    method createState (line 40) | _InputButtonState createState()
  class _InputButtonState (line 43) | class _InputButtonState extends State<InputButton> {
    method initState (line 51) | void initState()
    method dispose (line 60) | void dispose()
    method build (line 66) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/markdown/markdown_widget.dart
  class MarkdownWidget (line 7) | class MarkdownWidget extends StatelessWidget {
    method _getCommonSheet (line 17) | MarkdownStyleSheet  _getCommonSheet(BuildContext context, Color codeBa...
    method _getStyleSheetWhite (line 49) | MarkdownStyleSheet _getStyleSheetWhite(BuildContext context)
    method build (line 159) | Widget build(BuildContext context)
  class Highlighter (line 177) | class Highlighter extends SyntaxHighlighter {
    method format (line 179) | TextSpan format(String source)

FILE: modules/basic_system/toly_ui/lib/markdown/md_text_styles.dart
  class MdTextStyles (line 4) | class MdTextStyles{

FILE: modules/basic_system/toly_ui/lib/markdown/syntax_high_lighter.dart
  class SyntaxHighlighterStyle (line 4) | class SyntaxHighlighterStyle {
    method defaultStyle (line 16) | SyntaxHighlighterStyle defaultStyle()
  class SyntaxCostomHighlighter (line 39) | abstract class SyntaxCostomHighlighter {
    method format (line 40) | TextSpan format(String src)
  class DartSyntaxHighlighter (line 43) | class DartSyntaxHighlighter extends SyntaxCostomHighlighter {
    method format (line 140) | TextSpan format(String src)
    method _generateSpans (line 173) | bool _generateSpans()
    method _simplify (line 353) | void _simplify()
    method _firstLetterIsUpperCase (line 364) | bool _firstLetterIsUpperCase(String str)
  type _HighlightType (line 373) | enum _HighlightType {
  class _HighlightSpan (line 383) | class _HighlightSpan {
    method textForSpan (line 390) | String textForSpan(String src)
    method textStyle (line 394) | TextStyle? textStyle(SyntaxHighlighterStyle? style)

FILE: modules/basic_system/toly_ui/lib/object/windmill.dart
  class WindmillWidget (line 6) | class WindmillWidget extends StatelessWidget {
    method build (line 12) | Widget build(BuildContext context)
  class WindmillPainter (line 27) | class WindmillPainter extends CustomPainter {
    method paint (line 33) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 61) | bool shouldRepaint(covariant WindmillPainter oldDelegate)

FILE: modules/basic_system/toly_ui/lib/popable/drop_selectable_widget.dart
  type OnDropSelected (line 6) | typedef OnDropSelected = void Function(int index);
  class DropSelectableWidget (line 8) | class DropSelectableWidget extends StatefulWidget {
    method createState (line 30) | _DropSelectableWidgetState createState()
  class _DropSelectableWidgetState (line 33) | class _DropSelectableWidgetState extends State<DropSelectableWidget>
    method initState (line 46) | void initState()
    method dispose (line 74) | void dispose()
    method build (line 81) | Widget build(BuildContext context)
    method _showOverlay (line 105) | void _showOverlay()
    method _hideOverlay (line 110) | void _hideOverlay()
    method buildTarget (line 114) | Widget buildTarget()
    method _createOverlayEntry (line 148) | OverlayEntry _createOverlayEntry()
    method _buildItem (line 186) | Widget _buildItem(BuildContext context, int index)

FILE: modules/basic_system/toly_ui/lib/selector/burst_menu.dart
  type BurstType (line 9) | enum BurstType {
  type BurstMenuItemClick (line 18) | typedef BurstMenuItemClick = bool Function(int index);
  class BurstMenu (line 20) | class BurstMenu extends StatefulWidget {
    method createState (line 99) | BurstMenuState createState()
  class BurstMenuState (line 102) | class BurstMenuState extends State<BurstMenu>
    method initState (line 111) | void initState()
    method dispose (line 122) | void dispose()
    method build (line 128) | Widget build(BuildContext context)
    method _handleItemClick (line 152) | void _handleItemClick(int index)
    method didUpdateWidget (line 162) | void didUpdateWidget(BurstMenu oldWidget)
    method toggle (line 175) | void toggle()
  class _CircleFlowDelegate (line 187) | class _CircleFlowDelegate extends FlowDelegate {
    method paintChildren (line 208) | void paintChildren(FlowPaintingContext context)
    method paintWithOffset (line 244) | void paintWithOffset(FlowPaintingContext context, Offset centerOffset)
    method shouldRepaint (line 297) | bool shouldRepaint(FlowDelegate oldDelegate)

FILE: modules/basic_system/toly_ui/lib/selector/color_chooser.dart
  type CheckCallback (line 7) | typedef CheckCallback<T> = void Function(T color);
  class ColorChooser (line 9) | class ColorChooser extends StatefulWidget {
    method createState (line 23) | _ColorChooserState createState()
  class _ColorChooserState (line 26) | class _ColorChooserState extends State<ColorChooser> {
    method initState (line 31) | void initState()
    method build (line 39) | Widget build(BuildContext context)
  class IconChooser (line 68) | class IconChooser extends StatefulWidget {
    method createState (line 82) | _IconChooserState createState()
  class _IconChooserState (line 85) | class _IconChooserState extends State<IconChooser> {
    method initState (line 90) | void initState()
    method build (line 97) | Widget build(BuildContext context)
    method buildIcon (line 117) | Widget buildIcon({bool checked = false, IconData? icon})

FILE: modules/basic_system/toly_ui/lib/selector/multi_chip_filter.dart
  type BoolWidgetBuilder (line 7) | typedef BoolWidgetBuilder = Widget Function(BuildContext context, bool s...
  class MultiChipFilter (line 9) | class MultiChipFilter<T> extends StatefulWidget {
    method createState (line 18) | _MultiChipFilterState createState()
  class _MultiChipFilterState (line 21) | class _MultiChipFilterState<T> extends State<MultiChipFilter<T>> {
    method build (line 25) | Widget build(BuildContext context)
    method _buildChild (line 33) | Widget _buildChild(BuildContext context,int index)

FILE: modules/basic_system/toly_ui/lib/sliver_header/sliver_pinned_header.dart
  class SliverPinnedHeader (line 4) | class SliverPinnedHeader extends StatelessWidget {
    method build (line 11) | Widget build(BuildContext context)
  class _SliverPinnedHeaderDelegate (line 22) | class _SliverPinnedHeaderDelegate extends SliverPersistentHeaderDelegate {
    method build (line 30) | Widget build(BuildContext context, double shrinkOffset,
    method shouldRebuild (line 44) | bool shouldRebuild(covariant _SliverPinnedHeaderDelegate oldDelegate)

FILE: modules/basic_system/toly_ui/lib/sliver_header/sliver_snap_header.dart
  class SliverSnapHeader (line 4) | class SliverSnapHeader extends StatefulWidget {
    method createState (line 13) | State<SliverSnapHeader> createState()
  class _SliverSnapHeaderState (line 16) | class _SliverSnapHeaderState extends State<SliverSnapHeader>
    method _initSnapConfiguration (line 21) | void _initSnapConfiguration()
    method initState (line 33) | void initState()
    method build (line 39) | Widget build(BuildContext context)
  class _SliverSnapHeaderDelegate (line 52) | class _SliverSnapHeaderDelegate extends SliverPersistentHeaderDelegate {
    method build (line 73) | Widget build(
    method shouldRebuild (line 85) | bool shouldRebuild(covariant _SliverSnapHeaderDelegate oldDelegate)

FILE: modules/basic_system/toly_ui/lib/ti/circle.dart
  class Circle (line 3) | class Circle extends StatelessWidget {
    method build (line 12) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/ti/circle_image.dart
  class CircleImage (line 5) | class CircleImage extends StatelessWidget {
    method build (line 23) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/ti/circle_text.dart
  class CircleText (line 3) | class CircleText extends StatelessWidget {
    method build (line 24) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/ti/color_wrapper.dart
  class WrapColor (line 7) | class WrapColor extends StatelessWidget {
    method build (line 21) | Widget build(BuildContext context)
  class Circled (line 33) | class Circled extends StatelessWidget {
    method build (line 41) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/ti/math_runner.dart
  type FunNum1 (line 7) | typedef FunNum1 = Function(double t);
  class MathRunner (line 9) | class MathRunner extends StatefulWidget {
    method createState (line 24) | _MathRunnerState createState()
  class _MathRunnerState (line 27) | class _MathRunnerState extends State<MathRunner>
    method initState (line 35) | void initState()
    method dispose (line 51) | void dispose()
    method build (line 57) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/ti/panel.dart
  class Panel (line 4) | class Panel extends StatelessWidget {
    method build (line 23) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/lib/ti/tag.dart
  class Tag (line 3) | class Tag extends StatelessWidget {
    method build (line 12) | Widget build(BuildContext context)
  class _TagPaint (line 27) | class _TagPaint extends CustomPainter {
    method paint (line 41) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 62) | bool shouldRepaint(CustomPainter oldDelegate)

FILE: modules/basic_system/toly_ui/lib/ti/text_typer.dart
  class TextTyper (line 5) | class TextTyper extends StatefulWidget {
    method createState (line 19) | _TextTyperState createState()
  class _TextTyperState (line 22) | class _TextTyperState extends State<TextTyper> {
    method initState (line 27) | void initState()
    method _type (line 36) | void _type(Timer timer)
    method dispose (line 47) | void dispose()
    method build (line 54) | Widget build(BuildContext context)
    method _buildByAnim (line 61) | Widget _buildByAnim(BuildContext context, Widget? child)

FILE: modules/basic_system/toly_ui/lib/ti/toly_switch_list_tile.dart
  type _SwitchListTileType (line 11) | enum _SwitchListTileType { material, adaptive }
  class TolySwitchListTile (line 134) | class TolySwitchListTile extends StatelessWidget {
    method build (line 326) | Widget build(BuildContext context)

FILE: modules/basic_system/toly_ui/test/toly_ui_test.dart
  function main (line 5) | void main()

FILE: modules/basic_system/unit_env/lib/src/host.dart
  class UnitEnv (line 3) | class UnitEnv {
  class Unit3Host (line 7) | class Unit3Host extends Host {

FILE: modules/basic_system/utils/lib/src/color_utils.dart
  class ColorUtils (line 7) | class ColorUtils {
    method randomColor (line 8) | Color randomColor({
    method parse (line 29) | Color parse(String code)
    method colorString (line 68) | String colorString(Color color)

FILE: modules/basic_system/utils/lib/src/convert_man.dart
  class ConvertMan (line 15) | class ConvertMan {
    method time2string (line 18) | String time2string(DateTime date, {bool just = false})
    method _getDateStr (line 39) | String _getDateStr(DateTime date)

FILE: modules/basic_system/utils/lib/src/http_utils/http_util.dart
  class HttpUtil (line 9) | class HttpUtil {
    method setToken (line 33) | void setToken(String token)
    method deleteToken (line 39) | void deleteToken()
    method rebase (line 43) | void rebase(String baseIp)

FILE: modules/basic_system/utils/lib/src/http_utils/logs_interceptor.dart
  class LogsInterceptors (line 3) | class LogsInterceptors extends InterceptorsWrapper {
    method onRequest (line 6) | void onRequest(RequestOptions options, RequestInterceptorHandler handler)
    method onError (line 17) | void onError(DioError err, ErrorInterceptorHandler handler)
    method onResponse (line 26) | void onResponse(Response response, ResponseInterceptorHandler handler)

FILE: modules/basic_system/utils/lib/src/http_utils/task_result.dart
  class TaskResult (line 1) | class TaskResult<T> {
    method toString (line 10) | String toString()

FILE: modules/basic_system/utils/lib/src/http_utils/token_interceptor.dart
  class TokenInterceptors (line 7) | class TokenInterceptors<T> extends InterceptorsWrapper {
    method onRequest (line 15) | void onRequest(RequestOptions options, RequestInterceptorHandler handler)

FILE: modules/basic_system/utils/lib/src/random_provider.dart
  class RandomProvider (line 3) | class RandomProvider{

FILE: modules/basic_system/utils/lib/src/toast.dart
  class Toast (line 3) | class Toast {
    method toast (line 4) | toast(BuildContext context, String msg,
    method error (line 17) | void error(BuildContext context,String msg)
    method warning (line 21) | void warning(BuildContext context,String msg)
    method success (line 25) | void success(BuildContext context,String msg)
    method green (line 29) | void green(BuildContext context,String msg)

FILE: modules/basic_system/utils/test/utils_test.dart
  function main (line 3) | void main()

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/finding/functions.dart
  type XY (line 9) | typedef XY = (int,int);
  type FindFunction (line 11) | typedef FindFunction = Future<bool> Function(FindingState state);
  type FindingAlgo (line 13) | enum FindingAlgo {

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/finding/functions/AStar.dart
  function findingAStar (line 13) | Future<bool> findingAStar(FindingState state)
  function heuristic (line 81) | double heuristic(XY start, XY end)
  class Node (line 85) | class Node {
  class PriorityQueue (line 96) | class PriorityQueue {
    method add (line 101) | void add(Node node)
    method removeFirst (line 106) | Node removeFirst()

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/finding/functions/BFS.dart
  function findingBFS (line 15) | Future<bool> findingBFS(FindingState state)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/finding/functions/BestFS.dart
  function findingBestFS (line 16) | Future<bool> findingBestFS(FindingState state)
  function euclideanDistance (line 99) | double euclideanDistance(int x, int y, int endX, int endY)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/finding/functions/DFS.dart
  function findingDFS (line 14) | Future<bool> findingDFS(FindingState state)
  function dfs (line 25) | Future<bool> dfs(int x, int y)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/finding/functions/dijkstra.dart
  function findingDijkstra (line 15) | Future<bool> findingDijkstra(FindingState state)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions.dart
  type SortFunction (line 14) | typedef SortFunction = Future<void> Function(List<int> src, SortCallback...
  type SortCallback (line 15) | typedef SortCallback = Future<void> Function(List<int> dist);

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/bubble.dart
  function bubbleSort (line 4) | Future<void> bubbleSort(List<int> src, SortCallback callback )

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/cocktail.dart
  function cocktailSort (line 4) | Future<void> cocktailSort(List<int> src, SortCallback callback )

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/comb.dart
  function combSort (line 4) | Future<void> combSort(List<int> src, SortCallback callback)
  function getNextGap (line 29) | int getNextGap(int gap)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/cycle.dart
  function cycleSort (line 4) | Future<void> cycleSort(List<int> src, SortCallback callback)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/gnome.dart
  function gnomeSort (line 4) | Future<void> gnomeSort(List<int> src, SortCallback callback)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/heap.dart
  function heapSort (line 4) | Future<void> heapSort(List<int> src, SortCallback callback)
  function heapify (line 19) | Future<void> heapify(List<int> src, SortCallback callback, int n, int i)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/insertion.dart
  function insertionSort (line 4) | Future<void> insertionSort(List<int> src, SortCallback callback)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/merge.dart
  function mergeSort (line 4) | Future<void> mergeSort(List<int> src, SortCallback callback)
  function _mergeSort (line 9) | Future<void> _mergeSort(List<int> src, SortCallback callback,int leftInd...
  function merge (line 11) | Future<void> merge(int leftIndex, int middleIndex, int rightIndex)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/oddEven.dart
  function oddEvenSort (line 4) | Future<void> oddEvenSort(List<int> src, SortCallback callback)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/pigeonHole.dart
  function pigeonHoleSort (line 4) | Future<void> pigeonHoleSort(List<int> src, SortCallback callback )

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/quick.dart
  function quickSort (line 4) | Future<void> quickSort(List<int> src, SortCallback callback)
  function _quickSort (line 9) | Future<void> _quickSort(List<int> src, SortCallback callback,int leftInd...
  function _partition (line 11) | Future<int> _partition(int left, int right)
  function cf (line 57) | cf(int a, int b)

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/selection.dart
  function selectionSort (line 4) | Future<void> selectionSort(List<int> src, SortCallback callback )

FILE: modules/knowledge_system/algorithm/lib/src/algorithm/sort/functions/shell.dart
  function shellSort (line 4) | Future<void> shellSort(List<int> src, SortCallback callback)

FILE: modules/knowledge_system/algorithm/lib/src/data_scope/sort_config.dart
  class SortConfig (line 2) | class SortConfig {
    method copyWith (line 15) | SortConfig copyWith({

FILE: modules/knowledge_system/algorithm/lib/src/data_scope/state.dart
  type SortStatus (line 8) | enum SortStatus{
  class SortState (line 14) | class SortState with ChangeNotifier{
    method reset (line 32) | void reset()
    method sort (line 45) | void sort()
  class SortStateScope (line 61) | class SortStateScope extends InheritedNotifier<SortState> {
    method of (line 68) | SortState of(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/finding/data_scope/finding_config.dart
  class FindingConfig (line 4) | class FindingConfig {
    method copyWith (line 15) | FindingConfig copyWith({

FILE: modules/knowledge_system/algorithm/lib/src/finding/data_scope/finding_state.dart
  type FindingStatus (line 17) | enum FindingStatus{
  class FindingState (line 23) | class FindingState with ChangeNotifier {
    method lock (line 53) | void lock()
    method unlock (line 69) | void unlock()
    method tick (line 75) | void tick()
    method reset (line 86) | void reset()
    method setPath (line 144) | void setPath(int x, int y, bool isPath)
    method changeAlgo (line 151) | void changeAlgo(String name)
    method resetLocMap (line 161) | void resetLocMap()
    method run (line 167) | void run()
    method createMap (line 175) | void createMap(int startX, int startY)
    method setWithRoad (line 208) | void setWithRoad(int x, int y)
    method isInMap (line 213) | bool isInMap(int i, int j)
    method getBoxColor (line 217) | Color getBoxColor(int i, int j)
  class FindingStateScope (line 237) | class FindingStateScope extends InheritedNotifier<FindingState> {
    method of (line 244) | FindingState of(BuildContext context)
    method read (line 248) | FindingState read(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/finding/data_scope/position.dart
  class Position (line 3) | base class Position extends LinkedListEntry<Position> {

FILE: modules/knowledge_system/algorithm/lib/src/finding/data_scope/random_queue.dart
  class RandomQueue (line 7) | class RandomQueue {
    method addRandomQueue (line 14) | void addRandomQueue(Position position)
    method removeRandomQueue (line 23) | Position removeRandomQueue()
    method getSize (line 40) | int getSize()
    method isEmpty (line 45) | bool isEmpty()

FILE: modules/knowledge_system/algorithm/lib/src/finding/view/board.dart
  class MazeBoard (line 13) | class MazeBoard extends StatelessWidget {
    method build (line 17) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/finding/view/finding_button.dart
  class FindingButton (line 6) | class FindingButton extends StatelessWidget {
    method build (line 10) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/finding/view/finding_page.dart
  class FindingPage (line 5) | class FindingPage extends StatelessWidget {
    method build (line 9) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/finding/view/finding_tool_bar.dart
  class FindingToolBar (line 13) | class FindingToolBar extends StatelessWidget implements PreferredSizeWid...
    method build (line 17) | Widget build(BuildContext context)
  class SortBar (line 97) | class SortBar extends StatelessWidget {
    method build (line 101) | Widget build(BuildContext context)
  class SortSelector (line 122) | class SortSelector extends StatelessWidget {
    method build (line 126) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/navigation/view/algo_desk_navigation.dart
  class AppDeskNavigation (line 7) | class AppDeskNavigation extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/navigation/view/algo_menu_cell.dart
  class AlgoMenuMetaExt (line 15) | class AlgoMenuMetaExt extends Extra {
  class AlgoMenuCell (line 35) | class AlgoMenuCell extends StatelessWidget {
    method effectForegroundColor (line 51) | Color? effectForegroundColor(MenuTreeCellStyle style)
    method backgroundColor (line 63) | Color? backgroundColor(MenuTreeCellStyle style)
    method build (line 79) | Widget build(BuildContext context)
    method _buildTitle (line 139) | Widget _buildTitle(Color? fgColor)
    method _buildTag (line 164) | Widget _buildTag(AlgoMenuMetaExt? ext)
    method _buildExpandIndicator (line 180) | Widget _buildExpandIndicator(bool expanded, Color? color)

FILE: modules/knowledge_system/algorithm/lib/src/navigation/view/algo_menu_tree.dart
  class AppMenuTree (line 12) | class AppMenuTree extends StatefulWidget {
    method createState (line 16) | State<AppMenuTree> createState()
  class _AppMenuTreeState (line 19) | class _AppMenuTreeState extends State<AppMenuTree> with RouterChangeList...
    method initState (line 23) | void initState()
    method _initTreeMeta (line 28) | void _initTreeMeta()
    method build (line 40) | Widget build(BuildContext context)
    method _onSelect (line 60) | void _onSelect(MenuNode menu)
    method reassemble (line 75) | void reassemble()
    method onChangeRoute (line 82) | void onChangeRoute(String path)

FILE: modules/knowledge_system/algorithm/lib/src/sort/data_painter.dart
  class DataPainter (line 3) | class DataPainter extends CustomPainter {
    method paint (line 9) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 51) | bool shouldRepaint(covariant DataPainter oldDelegate)

FILE: modules/knowledge_system/algorithm/lib/src/sort/sort_page.dart
  class DeskSortPage (line 7) | class DeskSortPage extends StatelessWidget{
    method build (line 11) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/sort/sort_parper.dart
  class SortPaper (line 7) | class SortPaper extends StatelessWidget{
    method build (line 12) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/sort/sort_setting.dart
  class SortSettings (line 5) | class SortSettings extends StatefulWidget {
    method createState (line 10) | State<SortSettings> createState()
  class _SortSettingsState (line 13) | class _SortSettingsState extends State<SortSettings> {
    method initState (line 21) | void initState()
    method didChangeDependencies (line 26) | void didChangeDependencies()
    method build (line 35) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/sort/top_bar/sort_bar.dart
  class DeskSortBar (line 10) | class DeskSortBar extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)
  class SortBar (line 46) | class SortBar extends StatelessWidget {
    method build (line 50) | Widget build(BuildContext context)
  class SortSelector (line 71) | class SortSelector extends StatelessWidget {
    method build (line 75) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/sort/top_bar/sort_button.dart
  class SortButton (line 6) | class SortButton extends StatelessWidget {
    method build (line 10) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/views/algo_page.dart
  class AlgoScope (line 8) | class AlgoScope extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)
  class AlgoRouterPage (line 26) | class AlgoRouterPage extends StatefulWidget {
    method createState (line 30) | State<AlgoRouterPage> createState()
  class _AlgoRouterPageState (line 33) | class _AlgoRouterPageState extends State<AlgoRouterPage> {
    method initState (line 45) | void initState()
    method build (line 55) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/lib/src/views/desktop/desk_algo_panel.dart
  class DeskAlgoPanel (line 53) | class DeskAlgoPanel extends StatelessWidget {
    method build (line 57) | Widget build(BuildContext context)

FILE: modules/knowledge_system/algorithm/test/utils_test.dart
  function main (line 3) | void main()

FILE: modules/knowledge_system/artifact/lib/src/articles/bloc/article/bloc.dart
  class ArticleBloc (line 7) | class ArticleBloc extends Cubit<ArticleState> {
    method init (line 20) | void init()
    method loadNextPageMore (line 24) | Future<void> loadNextPageMore()
    method _loadDataFromDb (line 40) | Future<void> _loadDataFromDb(
  class ArticleState (line 61) | sealed class ArticleState {
  class ArticleLoading (line 69) | class ArticleLoading extends ArticleState {
  class ArticleWithData (line 73) | class ArticleWithData extends ArticleState {
  class ArticleFailed (line 78) | class ArticleFailed extends ArticleState {

FILE: modules/knowledge_system/artifact/lib/src/articles/bloc/columnize/bloc.dart
  class ColumnizeBloc (line 5) | class ColumnizeBloc extends Cubit<ColumnizeState> {
    method init (line 10) | void init()
    method _loadDataFromDb (line 14) | Future<void> _loadDataFromDb({bool requestNet = false})
  class ColumnizeState (line 25) | class ColumnizeState {

FILE: modules/knowledge_system/artifact/lib/src/articles/data/dao/article_dao.dart
  class ArticleDao (line 6) | class ArticleDao extends Dao {
    method insert (line 13) | Future<int> insert(Article po)
    method insertOrUpdate (line 19) | Future<int> insertOrUpdate(Article po)
    method shouldUpdate (line 30) | Future<bool> shouldUpdate(int id, int updateAt)
    method query (line 41) | Future<List<Article>> query(ArticleFilter filter)
    method total (line 68) | Future<int> total(ArticleFilter filter)
    method update (line 86) | Future<int> update(String id, Article frame)

FILE: modules/knowledge_system/artifact/lib/src/articles/data/dao/columnize_dao.dart
  class ColumnizeDao (line 5) | class ColumnizeDao extends Dao {
    method insert (line 12) | Future<int> insert(Columnize po)
    method insertOrUpdate (line 18) | Future<int> insertOrUpdate(Columnize po)
    method shouldUpdate (line 29) | Future<bool> shouldUpdate(int id, int updateAt)
    method query (line 40) | Future<List<Columnize>> query({

FILE: modules/knowledge_system/artifact/lib/src/articles/data/model/article.dart
  class Article (line 3) | class Article implements Po{
    method toJson (line 29) | Map<String, dynamic> toJson()
  class ArticleFilter (line 72) | class ArticleFilter{
    method copyWith (line 87) | ArticleFilter copyWith({
    method toString (line 101) | String toString()

FILE: modules/knowledge_system/artifact/lib/src/articles/data/model/columnize.dart
  class Columnize (line 2) | class Columnize {
    method toJson (line 27) | Map<String, dynamic> toJson()
    method toString (line 68) | String toString()

FILE: modules/knowledge_system/artifact/lib/src/articles/data/repository/article_repository.dart
  class ArticleRepository (line 7) | class ArticleRepository {
    method queryByDb (line 13) | Future<List<Article>> queryByDb(ArticleFilter filter)
    method total (line 18) | Future<int> total(ArticleFilter filter)

FILE: modules/knowledge_system/artifact/lib/src/articles/data/repository/columnize_repository.dart
  class ColumnizeRepository (line 6) | class ColumnizeRepository {
    method queryByDb (line 12) | Future<List<Columnize>> queryByDb({

FILE: modules/knowledge_system/artifact/lib/src/articles/view/article/article_detail_page.dart
  class ArticleDetailPage (line 10) | class ArticleDetailPage extends StatefulWidget {
    method createState (line 16) | State<ArticleDetailPage> createState()
  class _ArticleDetailPageState (line 19) | class _ArticleDetailPageState extends State<ArticleDetailPage> {
    method initState (line 25) | void initState()
    method build (line 59) | Widget build(BuildContext context)

FILE: modules/knowledge_system/artifact/lib/src/articles/view/article/column_detail_page.dart
  class ColumnDetailPage (line 7) | class ColumnDetailPage extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)

FILE: modules/knowledge_system/artifact/lib/src/articles/view/article/columnize_page_view.dart
  class ColumnizePageView (line 27) | class ColumnizePageView extends StatefulWidget {
    method createState (line 31) | _ColumnizePageViewState createState()
  class _ColumnizePageViewState (line 34) | class _ColumnizePageViewState extends State<ColumnizePageView> {
    method initState (line 43) | void initState()
    method dispose (line 61) | void dispose()
    method build (line 79) | Widget build(BuildContext context)
    method _buildByIndex (line 136) | Widget? _buildByIndex(BuildContext context, int index, List<Columnize>...
    method _buildAnimItemByIndex (line 144) | Widget _buildAnimItemByIndex(BuildContext context, Widget? child, int ...
    method _fixPosition (line 164) | int _fixPosition(int realPos, int initPos, int length)
    method _onEnter (line 171) | void _onEnter(PointerEnterEvent event)
    method _onExit (line 177) | void _onExit(PointerExitEvent event)
  class ColumnizeItem (line 184) | class ColumnizeItem extends StatelessWidget {
    method build (line 191) | Widget build(BuildContext context)

FILE: modules/knowledge_system/artifact/lib/src/articles/view/article/sliver_article.dart
  class SliverArticlePanel (line 15) | class SliverArticlePanel extends StatelessWidget {
    method build (line 19) | Widget build(BuildContext context)
  class SliverArticle (line 35) | class SliverArticle extends StatelessWidget {
    method build (line 41) | Widget build(BuildContext context)
    method _buildItem (line 67) | Widget? _buildItem(BuildContext context, int index)
  class ArticlePanel (line 72) | class ArticlePanel extends StatelessWidget {
    method toArticleDetail (line 77) | void toArticleDetail(BuildContext context)
    method _launchURL (line 89) | void _launchURL(String url)
    method build (line 100) | Widget build(BuildContext context)

FILE: modules/knowledge_system/artifact/lib/src/articles/view/article/sliver_columnize.dart
  class ColumnizeViewPage (line 6) | class ColumnizeViewPage extends StatefulWidget {
    method createState (line 10) | State<ColumnizeViewPage> createState()
  class _ColumnizeViewPageState (line 13) | class _ColumnizeViewPageState extends State<ColumnizeViewPage> {
    method initState (line 18) | void initState()
    method build (line 24) | Widget build(BuildContext context)

FILE: modules/knowledge_system/artifact/lib/src/articles/view/article/toly_article_scroll_page.dart
  class TolyArticleScrollPage (line 14) | class TolyArticleScrollPage extends StatefulWidget {
    method createState (line 18) | State<TolyArticleScrollPage> createState()
  class _TolyArticleScrollPageState (line 21) | class _TolyArticleScrollPageState extends State<TolyArticleScrollPage> {
    method dispose (line 28) | void dispose()
    method build (line 34) | Widget build(BuildContext context)
    method _onRefresh (line 65) | void _onRefresh()
    method _loadMore (line 72) | void _loadMore()

FILE: modules/knowledge_system/artifact/lib/src/articles/view/artifact_page.dart
  class ArtifactPage (line 19) | class ArtifactPage extends StatefulWidget {
    method createState (line 23) | State<ArtifactPage> createState()
  class _ArtifactPageState (line 42) | class _ArtifactPageState extends State<ArtifactPage>
    method initState (line 48) | void initState()
    method dispose (line 58) | void dispose()
    method build (line 67) | Widget build(BuildContext context)
    method _buildAppBar (line 133) | List<Widget> _buildAppBar(BuildContext context, bool innerBoxIsScrolled)
    method _buildItem (line 230) | Widget? _buildItem(BuildContext context, int index)
    method _listen (line 237) | void _listen()
  class Doodle (line 247) | class Doodle extends StatelessWidget {
    method build (line 251) | Widget build(BuildContext context)
  class DoodlePainter (line 261) | class DoodlePainter extends CustomPainter {
    method paint (line 263) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 283) | bool shouldRepaint(covariant CustomPainter oldDelegate)

FILE: modules/knowledge_system/artifact/lib/src/articles/view/building/building_panel.dart
  class BuildingPanel (line 3) | class BuildingPanel extends StatelessWidget {
    method build (line 7) | Widget build(BuildContext context)

FILE: modules/knowledge_system/artifact/lib/src/articles/view/desk_artifact_page.dart
  class DeskKnowledgePage (line 16) | class DeskKnowledgePage extends StatefulWidget {
    method createState (line 20) | State<DeskKnowledgePage> createState()
  class _DeskKnowledgePageState (line 23) | class _DeskKnowledgePageState extends State<DeskKnowledgePage>
    method initState (line 30) | void initState()
    method build (line 41) | Widget build(BuildContext context)
    method _listen (line 82) | void _listen()
  class TolyArticlesPage (line 95) | class TolyArticlesPage extends StatelessWidget {
    method build (line 99) | Widget build(BuildContext context)
  class SoreAlgoPage (line 117) | class SoreAlgoPage extends StatelessWidget {
    method build (line 121) | Widget build(BuildContext context)
    method _launchURL (line 164) | void _launchURL(String url)

FILE: modules/knowledge_system/artifact/lib/src/points/bloc/point_bloc.dart
  class PointBloc (line 11) | class PointBloc extends Cubit<PointState> {
    method loadPoint (line 16) | void loadPoint()
  class PointState (line 26) | sealed class PointState extends Equatable {
  class PointLoading (line 30) | class PointLoading extends PointState {
  class PointLoaded (line 37) | class PointLoaded extends PointState {
  class PointLoadFailure (line 46) | class PointLoadFailure extends PointState {

FILE: modules/knowledge_system/artifact/lib/src/points/bloc/point_comment_bloc.dart
  class PointCommentBloc (line 11) | class PointCommentBloc extends Cubit<PointCommentState> {
    method loadPointComment (line 16) | void loadPointComment(Issue point)
  class PointCommentState (line 33) | sealed class PointCommentState extends Equatable {
  class PointCommentInitial (line 37) | class PointCommentInitial extends PointCommentState {
  class PointCommentLoading (line 44) | class PointCommentLoading extends PointCommentState {
  class PointCommentLoaded (line 53) | class PointCommentLoaded extends PointCommentState {
    method toString (line 63) | String toString()
  class PointCommentLoadFailure (line 68) | class PointCommentLoadFailure extends PointCommentState {

FILE: modules/knowledge_system/artifact/lib/src/points/data/api/app_info.dart
  class AppInfoApi (line 5) | class AppInfoApi {
    method getAppVersion (line 7) | Future<TaskResult<AppInfo>> getAppVersion({required String appName})
  class AppInfo (line 35) | class AppInfo extends Equatable{
    method toString (line 52) | String toString()

FILE: modules/knowledge_system/artifact/lib/src/points/data/api/category_api.dart
  class CategoryApi (line 9) | class CategoryApi {
    method uploadCategoryData (line 10) | Future<TaskResult<bool>> uploadCategoryData(
    method getCategoryData (line 30) | Future<TaskResult<CategoryData>> getCategoryData()
  class CategoryData (line 54) | class CategoryData{

FILE: modules/knowledge_system/artifact/lib/src/points/data/model/github_user.dart
  class GithubUser (line 5) | class GithubUser {
    method toJson (line 129) | Map<String, dynamic> toJson()

FILE: modules/knowledge_system/artifact/lib/src/points/data/model/issue.dart
  class Issue (line 4) | class Issue extends Equatable {
    method fromJson (line 48) | Issue fromJson(dynamic json)
    method toJson (line 76) | Map<String, dynamic> toJson()
    method toString (line 95) | String toString()

FILE: modules/knowledge_system/artifact/lib/src/points/data/model/issue_comment.dart
  class IssueComment (line 6) | class IssueComment{
    method toJson (line 51) | Map<String, dynamic> toJson()

FILE: modules/knowledge_system/artifact/lib/src/points/data/model/license.dart
  class License (line 3) | class License {
    method toJson (line 20) | Map<String, dynamic> toJson()

FILE: modules/knowledge_system/artifact/lib/src/points/data/model/repository.dart
  class Repository (line 5) | class Repository {
    method toString (line 158) | String toString()
    method toJson (line 162) | Map<String, dynamic> toJson()

FILE: modules/knowledge_system/artifact/lib/src/points/data/model/repository_permissions.dart
  class RepositoryPermissions (line 3) | class RepositoryPermissions {
    method toJson (line 21) | Map<String, dynamic> toJson()

FILE: modules/knowledge_system/artifact/lib/src/points/repository/api/point_api.dart
  class PointApi (line 11) | abstract interface class PointApi {
    method getFlutterUnitRepo (line 13) | Future<ApiRet<Repository>> getFlutterUnitRepo()
    method getIssues (line 16) | Future<ApiRet<List<Issue>>> getIssues()
    method getIssuesComment (line 18) | Future<ApiRet<List<IssueComment>>> getIssuesComment(int pointId)
  class PointApiImpl (line 21) | class PointApiImpl implements PointApi {
    method getFlutterUnitRepo (line 25) | Future<ApiRet<Repository>> getFlutterUnitRepo()
    method getIssues (line 33) | Future<ApiRet<List<Issue>>> getIssues(
    method getIssuesComment (line 48) | Future<ApiRet<List<IssueComment>>> getIssuesComment(int pointId)

FILE: modules/knowledge_system/artifact/lib/src/points/view/desk_ui/desk_point_page.dart
  class DeskPointPage (line 15) | class DeskPointPage extends StatefulWidget {
    method createState (line 19) | State<DeskPointPage> createState()
  class _DeskPointPageState (line 22) | class _DeskPointPageState extends State<DeskPointPage> {
    method initState (line 37) | void initState()
    method _loadRepo (line 42) | void _loadRepo()
    method build (line 52) | Widget build(BuildContext context)
  class IssuesTip (line 82) | class IssuesTip extends StatelessWidget {
    method build (line 86) | Widget build(BuildContext context)
    method _toUrl (line 111) | void _toUrl()
  class SimpleDeskTopBar (line 120) | class SimpleDeskTopBar extends StatelessWidget {
    method build (line 129) | Widget build(BuildContext context)

FILE: modules/knowledge_system/artifact/lib/src/points/view/desk_ui/github_repo_panel.dart
  class GithubRepoPanel (line 8) | class GithubRepoPanel extends StatefulWidget {
    method createState (line 14) | State<GithubRepoPanel> createState()
  class _GithubRepoPanelState (line 17) | class _GithubRepoPanelState extends State<GithubRepoPanel> {
    method build (line 19) | Widget build(BuildContext context)

FILE: modules/knowledge_system/artifact/lib/src/points/view/issues_point/issue_item.dart
  class IssueItem (line 14) | class IssueItem extends StatelessWidget {
    method build (line 25) | Widget build(BuildContext context)
    method _buildTop (line 75) | Widget _buildTop()

FILE: modules/knowledge_system/artifact/lib/src/points/view/issues_point/issues_detail.dart
  class IssuesDetailPage (line 15) | class IssuesDetailPage extends StatelessWidget {
    method build (line 19) | Widget build(BuildContext context)
    method _buildContent (line 35) | Widget _buildContent(BuildContext context, PointCommentState state)
  class IssueTitle (line 59) | class IssueTitle extends StatelessWidget {
    method build (line 71) | Widget build(BuildContext context)
  class IssueCommentWidget (line 145) | class IssueCommentWidget extends StatelessWidget {
    method build (line 157) | Widget build(BuildContext context)

FILE: modules/knowledge_system/artifact/lib/src/points/view/issues_point/issues_point_page.dart
  class IssuesPointScope (line 18) | class IssuesPointScope extends StatelessWidget {
    method build (line 22) | Widget build(BuildContext context)
  class IssuesPointPage (line 33) | class IssuesPointPage extends StatelessWidget {
    method build (line 37) | Widget build(BuildContext context)
  class IssuesPointContent (line 42) | class IssuesPointContent extends StatefulWidget {
    method createState (line 46) | State createState()
  class _IssuesPointContentState (line 49) | class _IssuesPointContentState extends State<IssuesPointContent> {
    method initState (line 53) | void initState()
    method build (line 59) | Widget build(BuildContext context)
    method buildContentByState (line 70) | Widget buildContentByState(PointState state)
    method toDetailPage (line 109) | void toDetailPage(Issue issue)
    method _buildSliverAppBar (line 120) | Widget _buildSliverAppBar()
    method _loadIssues (line 156) | Future<void> _loadIssues()
    method _loadRepo (line 161) | void _loadRepo()

FILE: modules/knowledge_system/artifact/lib/src/points/view/issues_point/repo_widget.dart
  class RepoWidget (line 13) | class RepoWidget extends StatelessWidget {
    method build (line 19) | Widget build(BuildContext context)

FILE: modules/knowledge_system/artifact/test/utils_test.dart
  function main (line 3) | void main()

FILE: modules/knowledge_system/awesome/lib/awesome.dart
  class Calculator (line 4) | class Calculator {
    method addOne (line 6) | int addOne(int value)

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_01/main.dart
  function main (line 5) | void main()
  class MyApp (line 9) | class MyApp extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_01/notifier/progress_value_notifier.dart
  class ProgressValueNotifier (line 5) | class ProgressValueNotifier with ChangeNotifier{

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_01/page/detail/detail_progress_view.dart
  class DetailProgressView (line 6) | class DetailProgressView extends StatefulWidget {
    method createState (line 11) | State<DetailProgressView> createState()
  class _DetailProgressViewState (line 14) | class _DetailProgressViewState extends State<DetailProgressView> {
    method initState (line 17) | void initState()
    method build (line 23) | Widget build(BuildContext context)
    method _update (line 40) | void _update()
    method dispose (line 45) | void dispose()

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_01/page/detail/download_detail.dart
  class DownloadDetailPage (line 5) | class DownloadDetailPage extends StatelessWidget {
    method build (line 9) | Widget build(BuildContext context)

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_01/page/home/home_page.dart
  class ChangeNotifierHome01 (line 8) | class ChangeNotifierHome01 extends StatefulWidget {
    method createState (line 12) | State<ChangeNotifierHome01> createState()
  class _ChangeNotifierHome01State (line 15) | class _ChangeNotifierHome01State extends State<ChangeNotifierHome01> {
    method build (line 19) | Widget build(BuildContext context)
    method _startTimer (line 39) | void _startTimer()
    method _updateProgress (line 49) | void _updateProgress(Timer timer)

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_01/page/home/home_progress_view.dart
  class HomeProgressView (line 6) | class HomeProgressView extends StatefulWidget {
    method createState (line 11) | State<HomeProgressView> createState()
  class _HomeProgressViewState (line 14) | class _HomeProgressViewState extends State<HomeProgressView> {
    method initState (line 17) | void initState()
    method build (line 23) | Widget build(BuildContext context)
    method _update (line 40) | void _update()
    method dispose (line 45) | void dispose()

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_02/main.dart
  class MyApp (line 8) | class MyApp extends StatelessWidget{
    method build (line 12) | Widget build(BuildContext context)

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_02/notifier/download_data_scope.dart
  class DownloadDataScope (line 5) | class DownloadDataScope extends InheritedNotifier<ProgressValueNotifier>{
    method of (line 9) | ProgressValueNotifier of(BuildContext context)
    method read (line 13) | ProgressValueNotifier read(BuildContext context)

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_02/notifier/progress_value_notifier.dart
  class ProgressValueNotifier (line 3) | class ProgressValueNotifier with ChangeNotifier{

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_02/page/detail/detail_progress_view.dart
  class DetailProgressView (line 7) | class DetailProgressView extends StatelessWidget{
    method build (line 11) | Widget build(BuildContext context)

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_02/page/detail/download_detail.dart
  class DownloadDetailPage (line 5) | class DownloadDetailPage extends StatelessWidget {
    method build (line 9) | Widget build(BuildContext context)

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_02/page/home/home_page.dart
  class ChangeNotifierHome02 (line 9) | class ChangeNotifierHome02 extends StatefulWidget {
    method createState (line 13) | State<ChangeNotifierHome02> createState()
  class _ChangeNotifierHome02State (line 16) | class _ChangeNotifierHome02State extends State<ChangeNotifierHome02> {
    method build (line 20) | Widget build(BuildContext context)
    method _startTimer (line 43) | void _startTimer()
    method _updateProgress (line 52) | void _updateProgress(Timer timer)

FILE: modules/knowledge_system/awesome/lib/listenable/change_notifier_02/page/home/home_progress_view.dart
  class HomeProgressView (line 7) | class HomeProgressView extends StatelessWidget{
    method build (line 12) | Widget build(BuildContext context)

FILE: modules/knowledge_system/awesome/test/awesome_test.dart
  function main (line 5) | void main()

FILE: modules/knowledge_system/layout/lib/src/bloc/display_logic.dart
  class DisplayLogic (line 7) | class DisplayLogic with ChangeNotifier {
    method nextPage (line 18) | void nextPage()
    method active (line 25) | void active(String path)
    method prevPage (line 37) | void prevPage()
  class DisplayScope (line 45) | class DisplayScope extends InheritedNotifier<DisplayLogic> {
    method of (line 52) | DisplayLogic of(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/bloc/display_state.dart
  class DisplayState (line 5) | class DisplayState {
    method copyWith (line 20) | DisplayState copyWith({

FILE: modules/knowledge_system/layout/lib/src/data/model/display_frame.dart
  class DisplayFrame (line 10) | class DisplayFrame {

FILE: modules/knowledge_system/layout/lib/src/ext/go_router/listener.dart
  function initState (line 18) | void initState()
  function dispose (line 25) | void dispose()
  function _onChange (line 30) | void _onChange()
  function onChangeRoute (line 35) | void onChangeRoute(String path)

FILE: modules/knowledge_system/layout/lib/src/navigation/router/transition/fade_page_transitions_builder.dart
  class FadePageTransitionsBuilder (line 3) | class FadePageTransitionsBuilder extends PageTransitionsBuilder {
    method buildTransitions (line 7) | Widget buildTransitions<T>(

FILE: modules/knowledge_system/layout/lib/src/navigation/router/transition/page_route/fade_page_route.dart
  class FadePageRoute (line 9) | class FadePageRoute<T> extends MaterialPageRoute<T> {
    method buildTransitions (line 21) | Widget buildTransitions(

FILE: modules/knowledge_system/layout/lib/src/navigation/router/transition/page_route/slide_page_route.dart
  class SlidePageRoute (line 11) | class SlidePageRoute<T> extends MaterialPageRoute<T> {
    method buildTransitions (line 21) | Widget buildTransitions(

FILE: modules/knowledge_system/layout/lib/src/navigation/router/transition/page_route/zero_page_route.dart
  class ZeroPageRoute (line 9) | class ZeroPageRoute<T> extends MaterialPageRoute<T> {
    method buildTransitions (line 18) | Widget buildTransitions(

FILE: modules/knowledge_system/layout/lib/src/navigation/router/transition/size_clip_transition.dart
  class SizeClipTransition (line 5) | class SizeClipTransition extends StatelessWidget {
    method build (line 18) | Widget build(BuildContext context)
  class SizePathClipper (line 26) | class SizePathClipper extends CustomClipper<Path> {
    method getClip (line 32) | Path getClip(Size size)
    method shouldReclip (line 47) | bool shouldReclip(covariant SizePathClipper oldClipper)
  class ScalePathClipper (line 52) | class ScalePathClipper extends CustomClipper<Path> {
    method getClip (line 58) | Path getClip(Size size)
    method shouldReclip (line 73) | bool shouldReclip(covariant ScalePathClipper oldClipper)
  class CirclePathClipper (line 78) | class CirclePathClipper extends CustomClipper<Path> {
    method getClip (line 84) | Path getClip(Size size)
    method shouldReclip (line 102) | bool shouldReclip(covariant CirclePathClipper oldClipper)

FILE: modules/knowledge_system/layout/lib/src/navigation/router/transition/slide_transition/cupertino_back_gesture_detector.dart
  class CupertinoBackGestureDetector (line 28) | class CupertinoBackGestureDetector<T> extends StatefulWidget {
    method createState (line 43) | _CupertinoBackGestureDetectorState<T> createState()
  class _CupertinoBackGestureDetectorState (line 46) | class _CupertinoBackGestureDetectorState<T> extends State<CupertinoBackG...
    method initState (line 52) | void initState()
    method dispose (line 62) | void dispose()
    method _handleDragStart (line 67) | void _handleDragStart(DragStartDetails details)
    method _handleDragUpdate (line 73) | void _handleDragUpdate(DragUpdateDetails details)
    method _handleDragEnd (line 79) | void _handleDragEnd(DragEndDetails details)
    method _handleDragCancel (line 86) | void _handleDragCancel()
    method _handlePointerDown (line 94) | void _handlePointerDown(PointerDownEvent event)
    method _convertToLogical (line 100) | double _convertToLogical(double value)
    method build (line 110) | Widget build(BuildContext context)
  class CupertinoBackGestureController (line 138) | class CupertinoBackGestureController<T> {
    method dragUpdate (line 154) | void dragUpdate(double delta)
    method dragEnd (line 160) | void dragEnd(double velocity)
  function startPopGesture (line 219) | CupertinoBackGestureController<T> startPopGesture<T>(PageRoute<T> route)
  function isPopGestureEnabled (line 226) | bool isPopGestureEnabled<T>(PageRoute<T> route)
  function isPopGestureInProgress (line 275) | bool isPopGestureInProgress(PageRoute<dynamic> route)

FILE: modules/knowledge_system/layout/lib/src/navigation/router/transition/slide_transition/slide_page_transition_builder.dart
  class SlidePageTransitionsBuilder (line 8) | class SlidePageTransitionsBuilder extends PageTransitionsBuilder {
    method buildTransitions (line 12) | Widget buildTransitions<T>(

FILE: modules/knowledge_system/layout/lib/src/navigation/view/app_desk_navigation.dart
  class AppDeskNavigation (line 8) | class AppDeskNavigation extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/navigation/view/app_menu_tree.dart
  class AppMenuTree (line 9) | class AppMenuTree extends StatefulWidget {
    method createState (line 13) | State<AppMenuTree> createState()
  class _AppMenuTreeState (line 16) | class _AppMenuTreeState extends State<AppMenuTree> with RouterChangeList...
    method initState (line 20) | void initState()
    method _initTreeMeta (line 25) | void _initTreeMeta()
    method build (line 37) | Widget build(BuildContext context)
    method _onMenuRouterChange (line 55) | void _onMenuRouterChange(BuildContext context, String? path)
    method _onSelect (line 62) | void _onSelect(MenuNode menu)
    method reassemble (line 73) | void reassemble()
    method onChangeRoute (line 80) | void onChangeRoute(String path)

FILE: modules/knowledge_system/layout/lib/src/views/base/align/align_show.dart
  class AlignShow (line 3) | class AlignShow extends StatelessWidget {
    method build (line 31) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/base/align/align_show2.dart
  class Ball (line 3) | class Ball extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)
  class AlignShow2 (line 25) | class AlignShow2 extends StatefulWidget {
    method createState (line 31) | _AlignShow2State createState()
  class _AlignShow2State (line 34) | class _AlignShow2State extends State<AlignShow2> {
    method build (line 38) | Widget build(BuildContext context)
    method f (line 70) | double f(x)

FILE: modules/knowledge_system/layout/lib/src/views/base/padding/inner_padding.dart
  class InnerPadding (line 3) | class InnerPadding extends StatelessWidget {
    method build (line 7) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/base/padding/outer_padding.dart
  class OuterPadding (line 5) | class OuterPadding extends StatelessWidget {
    method build (line 9) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/base/padding/sizedbox_padding.dart
  class SizedBoxPadding (line 6) | class SizedBoxPadding extends StatelessWidget {
    method build (line 10) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/base/positioned/positioned_show.dart
  class PositionedShow (line 3) | class PositionedShow extends StatefulWidget {
    method createState (line 7) | State<PositionedShow> createState()
  class _PositionedShowState (line 10) | class _PositionedShowState extends State<PositionedShow> {
    method build (line 12) | Widget build(BuildContext context)
    method _onPanUpdate (line 49) | void _onPanUpdate(DragUpdateDetails details)
  class DraggedBox (line 57) | class DraggedBox extends StatelessWidget {
    method build (line 63) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/base/size/size_display.dart
  class FrameDisplayPanel (line 7) | class FrameDisplayPanel extends StatelessWidget {
    method build (line 11) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/base/size/size_loss_by_align.dart
  class LossDisplay (line 8) | class LossDisplay extends StatelessWidget {
    method build (line 12) | Widget build(BuildContext context)
  class SizeLossByAlign (line 31) | class SizeLossByAlign extends StatelessWidget {
    method build (line 35) | Widget build(BuildContext context)
  class SizeLossByRow (line 54) | class SizeLossByRow extends StatelessWidget {
    method build (line 58) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/base/size/size_tight_constraint.dart
  class SizeTightConstraint (line 3) | class SizeTightConstraint extends StatelessWidget {
    method build (line 9) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/base/size/size_unconstraint.dart
  class SizeUnconstrain (line 4) | class SizeUnconstrain extends StatelessWidget {
    method build (line 8) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/components/grid_xy_layout.dart
  type XYBuilder (line 3) | typedef XYBuilder = Function((int x, int y));
  class GridXYLayout (line 5) | class GridXYLayout extends StatelessWidget {
    method build (line 18) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/display/layout_playground.dart
  class LayoutPlayGround (line 6) | class LayoutPlayGround extends StatelessWidget {
    method build (line 15) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/display/playground_bottom_bar.dart
  class PlaygroundBottomBar (line 6) | class PlaygroundBottomBar extends StatelessWidget {
    method build (line 10) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/display/playground_top_bar.dart
  class PlaygroundTopBar (line 8) | class PlaygroundTopBar extends StatelessWidget {
    method build (line 12) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/interest/elevator/elevator.dart
  class ElevatorRoom (line 12) | class ElevatorRoom extends StatefulWidget {
    method createState (line 16) | State<ElevatorRoom> createState()
  class _ElevatorRoomState (line 19) | class _ElevatorRoomState extends State<ElevatorRoom> {
    method build (line 22) | Widget build(BuildContext context)
    method upRoom (line 64) | void upRoom()
    method downRoom (line 71) | void downRoom()
    method elevator (line 78) | Widget elevator({required double height, required double width})

FILE: modules/knowledge_system/layout/lib/src/views/layout_page.dart
  class LayoutRouterPage (line 11) | class LayoutRouterPage extends StatefulWidget {
    method createState (line 15) | State<LayoutRouterPage> createState()
  class _LayoutRouterPageState (line 18) | class _LayoutRouterPageState extends State<LayoutRouterPage> {
    method initState (line 30) | void initState()
    method build (line 40) | Widget build(BuildContext context)
  class LayoutPage (line 55) | class LayoutPage extends StatelessWidget {
    method build (line 59) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/multi/flex/column_show.dart
  class ColumnShow (line 3) | class ColumnShow extends StatelessWidget {
    method build (line 7) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/multi/flex/row_show.dart
  class RowShow (line 3) | class RowShow extends StatelessWidget {
    method build (line 7) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/playground/data/flex_attr.dart
  class FlexAttr (line 11) | class FlexAttr {
    method copyWith (line 30) | FlexAttr copyWith({

FILE: modules/knowledge_system/layout/lib/src/views/playground/data/stack_attr.dart
  class StackAttr (line 13) | class StackAttr {
    method copyWith (line 25) | StackAttr copyWith({
  type AttrAlignment (line 37) | enum AttrAlignment{

FILE: modules/knowledge_system/layout/lib/src/views/playground/data/wrap_attr.dart
  class WrapAttr (line 12) | class WrapAttr {
    method copyWith (line 33) | WrapAttr copyWith({

FILE: modules/knowledge_system/layout/lib/src/views/playground/view/display_item.dart
  class DisplayItem (line 11) | class DisplayItem {
  class DisplayPlayItem (line 24) | class DisplayPlayItem extends StatefulWidget {
    method createState (line 34) | State<DisplayPlayItem> createState()
  class _DisplayPlayItemState (line 37) | class _DisplayPlayItemState extends State<DisplayPlayItem> {
    method build (line 39) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/playground/view/flex/flex_op_panel.dart
  class FlexOpTool (line 18) | class FlexOpTool extends StatefulWidget {
    method createState (line 35) | State<FlexOpTool> createState()
  class _FlexOpToolState (line 38) | class _FlexOpToolState extends State<FlexOpTool> {
    method build (line 43) | Widget build(BuildContext context)
    method _handleAdd (line 154) | void _handleAdd()
    method dispose (line 165) | void dispose()

FILE: modules/knowledge_system/layout/lib/src/views/playground/view/flex/flex_playground.dart
  class FlexPlayground (line 17) | class FlexPlayground extends StatefulWidget {
    method createState (line 21) | State<FlexPlayground> createState()
  class _FlexPlaygroundState (line 24) | class _FlexPlaygroundState extends State<FlexPlayground> {
    method initState (line 30) | void initState()
    method build (line 36) | Widget build(BuildContext context)
    method _reset (line 64) | void _reset({bool init=false})
    method _onAttrChange (line 76) | void _onAttrChange(FlexAttr attr)
    method _onAddBox (line 82) | void _onAddBox(Size size)
    method _deleteSelectIndex (line 89) | void _deleteSelectIndex()
    method _onSelectChanged (line 99) | void _onSelectChanged(int value)
  class FlexDisplay (line 111) | class FlexDisplay extends StatelessWidget {
    method build (line 126) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/playground/view/form_item/item_selector.dart
  type NameCalc (line 12) | typedef NameCalc<T> = String Function(T data);
  class ItemSelector (line 14) | class ItemSelector<T> extends StatelessWidget {
    method build (line 33) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/playground/view/form_item/item_size_input.dart
  class ItemSizeInput (line 11) | class ItemSizeInput extends StatelessWidget {
    method build (line 22) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/playground/view/form_item/value_input.dart
  class ValueInput (line 11) | class ValueInput extends StatelessWidget {
    method build (line 24) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/playground/view/stack/stack_op_panel.dart
  class StackOpTool (line 18) | class StackOpTool extends StatefulWidget {
    method createState (line 35) | State<StackOpTool> createState()
  class _StackOpToolState (line 38) | class _StackOpToolState extends State<StackOpTool> {
    method build (line 43) | Widget build(BuildContext context)
    method _handleAdd (line 114) | void _handleAdd()
    method dispose (line 125) | void dispose()

FILE: modules/knowledge_system/layout/lib/src/views/playground/view/stack/stack_playground.dart
  class StackPlayground (line 18) | class StackPlayground extends StatefulWidget {
    method createState (line 22) | State<StackPlayground> createState()
  class _StackPlaygroundState (line 25) | class _StackPlaygroundState extends State<StackPlayground> {
    method initState (line 31) | void initState()
    method build (line 42) | Widget build(BuildContext context)
    method _onAttrChange (line 74) | void _onAttrChange(StackAttr attr)
    method _onAddBox (line 80) | void _onAddBox(Size size)
    method _onSelectChanged (line 88) | void _onSelectChanged(int value)
    method _deleteSelectIndex (line 97) | void _deleteSelectIndex()
  class StackDisplay (line 108) | class StackDisplay extends StatelessWidget {
    method build (line 123) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/playground/view/wrap/wrap_op_panel.dart
  class WrapOpTool (line 18) | class WrapOpTool extends StatefulWidget {
    method createState (line 35) | State<WrapOpTool> createState()
  class _WrapOpToolState (line 38) | class _WrapOpToolState extends State<WrapOpTool> {
    method build (line 45) | Widget build(BuildContext context)
    method _handleAdd (line 163) | void _handleAdd()

FILE: modules/knowledge_system/layout/lib/src/views/playground/view/wrap/wrap_playground.dart
  class WrapPlayground (line 33) | class WrapPlayground extends StatefulWidget {
    method createState (line 37) | State<WrapPlayground> createState()
  class _WrapPlaygroundState (line 40) | class _WrapPlaygroundState extends State<WrapPlayground> {
    method initState (line 46) | void initState()
    method build (line 52) | Widget build(BuildContext context)
    method _reset (line 79) | void _reset()
    method _onAttrChange (line 90) | void _onAttrChange(WrapAttr attr)
    method _onAddBox (line 95) | void _onAddBox(Size size)
    method _onSelectChanged (line 103) | void _onSelectChanged(int value)
    method _deleteSelectIndex (line 112) | void _deleteSelectIndex()
  class WrapDisplay (line 123) | class WrapDisplay extends StatelessWidget {
    method build (line 138) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/popable/autocomplete_demo.dart
  class AutocompleteDemo (line 5) | class AutocompleteDemo extends StatelessWidget {
    method build (line 9) | Widget build(BuildContext context)
    method onSelected (line 21) | void onSelected(String selection)
    method buildOptions (line 25) | Future<Iterable<String>> buildOptions(
    method searchByArgs (line 34) | Future<Iterable<String>> searchByArgs(String args)

FILE: modules/knowledge_system/layout/lib/src/views/popable/dropdown_button_demo.dart
  class CustomDropDownButton (line 19) | class CustomDropDownButton extends StatefulWidget {
    method createState (line 23) | _CustomDropDownButtonState createState()
  class _CustomDropDownButtonState (line 26) | class _CustomDropDownButtonState extends State<CustomDropDownButton> {
    method build (line 37) | Widget build(BuildContext context)
    method _buildItems (line 60) | List<DropdownMenuItem<Color>> _buildItems()

FILE: modules/knowledge_system/layout/lib/src/views/popable/dropdown_menu_demo.dart
  class DropdownMenuNode1 (line 20) | class DropdownMenuNode1 extends StatefulWidget {
    method createState (line 24) | State<DropdownMenuNode1> createState()
  class _DropdownMenuNode1State (line 27) | class _DropdownMenuNode1State extends State<DropdownMenuNode1> {
    method build (line 32) | Widget build(BuildContext context)
    method _onSelect (line 52) | void _onSelect(String? value)
    method _buildMenuList (line 58) | List<DropdownMenuEntry<String>> _buildMenuList(List<String> data)

FILE: modules/knowledge_system/layout/lib/src/views/scroll/grid_view/grid_view_demo01.dart
  class GridViewDemo01 (line 3) | class GridViewDemo01 extends StatelessWidget {
    method build (line 9) | Widget build(BuildContext context)
    method _buildItem (line 22) | Container _buildItem(Color color)
    method colorString (line 38) | String colorString(Color color)

FILE: modules/knowledge_system/layout/lib/src/views/scroll/list_view/list_view_demo01.dart
  class ListViewDemo01 (line 3) | class ListViewDemo01 extends StatelessWidget {
    method build (line 7) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/lib/src/views/scroll/page_view/page_view_demo01.dart
  class PageViewDemo01 (line 5) | class PageViewDemo01 extends StatelessWidget {
    method build (line 11) | Widget build(BuildContext context)
    method colorString (line 31) | String colorString(Color color)

FILE: modules/knowledge_system/layout/lib/src/views/test_show.dart
  class TextShow (line 3) | class TextShow extends StatelessWidget {
    method build (line 9) | Widget build(BuildContext context)

FILE: modules/knowledge_system/layout/test/layout_test.dart
  function main (line 5) | void main()

FILE: modules/knowledge_system/note/lib/src/bloc/bloc.dart
  class ArtSysBloc (line 9) | class ArtSysBloc extends Cubit<ArtSysState> {
    method loadFirstFrame (line 17) | Future<void> loadFirstFrame()
    method _openCurrent (line 38) | void _openCurrent()
    method newArticle (line 45) | Future<void> newArticle()
    method select (line 59) | void select(ArticlePo article)
    method open (line 67) | void open(int id)
    method write (line 74) | void write(String content)
    method updateTitleV2 (line 81) | void updateTitleV2()
    method updateTitle (line 89) | void updateTitle(ArticlePo article, String title)
    method delete (line 102) | Future<void> delete()
  class ListStatus (line 111) | sealed class ListStatus {
  class LoadingStatus (line 115) | class LoadingStatus extends ListStatus {
  class SuccessStatus (line 119) | class SuccessStatus extends ListStatus {
  class FailedStatus (line 125) | class FailedStatus extends ListStatus {
  class ArtSysState (line 132) | class ArtSysState {
    method copyWith (line 143) | ArtSysState copyWith({

FILE: modules/knowledge_system/note/lib/src/bloc/news_bloc.dart
  class NewsBloc (line 7) | class NewsBloc extends Cubit<NewsState>
    method initByCache (line 13) | void initByCache()
    method load (line 24) | void load()
    method refreshFromNet (line 34) | Future<void> refreshFromNet()
  class NewsState (line 54) | class NewsState {

FILE: modules/knowledge_system/note/lib/src/env/env.dart
  class NoteEnv (line 3) | class NoteEnv with NoteModuleBridge {
    method attachBridge (line 15) | void attachBridge(NoteModuleBridge bridge)

FILE: modules/knowledge_system/note/lib/src/repository/article_repository.dart
  type PaginateList (line 8) | typedef PaginateList<T> = ({List<T> list, int total});
  class ArticleRepository (line 10) | abstract class ArticleRepository {
    method create (line 11) | Future<ApiRet<bool>> create(ArticleCreatePayload payload)
    method open (line 13) | Future<ApiRet<String>> open(int id)
    method write (line 15) | Future<ApiRet<bool>> write(int id, String content)
    method list (line 17) | Future<ApiRet<List<ArticlePo>>> list(SizeFilter filter)
    method getArticlesByTag (line 22) | Future<ApiRet<List<ArticlePo>>> getArticlesByTag(
    method delete (line 27) | Future<ApiRet<bool>> delete(int id)
    method update (line 29) | Future<ApiRet<ArticlePo>> update(int id, ArticleUpdatePayload payload)
    method loadArticleTree (line 31) | Future<ApiRet<Hierarchy>> loadArticleTree()
  class HttpArticleRepository (line 34) | class HttpArticleRepository implements ArticleRepository {
    method create (line 38) | Future<ApiRet<bool>> create(ArticleCreatePayload payload)
    method delete (line 47) | Future<ApiRet<bool>> delete(int id)
    method list (line 55) | Future<ApiRet<List<ArticlePo>>> list(SizeFilter filter)
    method open (line 69) | Future<ApiRet<String>> open(int id)
    method write (line 77) | Future<ApiRet<bool>> write(int id, String content)
    method update (line 91) | Future<ApiRet<ArticlePo>> update(int id, ArticleUpdatePayload payload)
    method loadArticleTree (line 102) | Future<ApiRet<Hierarchy>> loadArticleTree()
    method getArticlesByTag (line 112) | Future<ApiRet<List<ArticlePo>>> getArticlesByTag(int tagId,

FILE: modules/knowledge_system/note/lib/src/repository/model/article.dart
  type ArticleType (line 8) | enum ArticleType {
  class ArticlePo (line 13) | class ArticlePo implements Po {
    method toJson (line 69) | Map<String, dynamic> toJson()
  class ArticleCreatePayload (line 83) | class ArticleCreatePayload {
    method toJson (line 109) | Map<String, dynamic> toJson()
  class ArticleUpdatePayload (line 112) | class ArticleUpdatePayload {
    method toJson (line 142) | Map<String, dynamic> toJson()

FILE: modules/knowledge_system/note/lib/src/repository/model/category.dart
  class Hierarchy (line 1) | class Hierarchy {

FILE: modules/knowledge_system/note/lib/src/repository/model/query.dart
  class SizeFilter (line 1) | class SizeFilter {

FILE: modules/knowledge_system/note/lib/src/repository/model/status.dart
  class TaskStatus (line 1) | sealed class TaskStatus {
  class TaskNone (line 5) | class TaskNone extends TaskStatus {
  class TaskLoading (line 9) | class TaskLoading extends TaskStatus {
  class TaskSuccess (line 13) | class TaskSuccess extends TaskStatus {
  class TaskFailed (line 17) | class TaskFailed extends TaskStatus {

FILE: modules/knowledge_system/note/lib/src/view/art_sys_scope.dart
  class ArtSysScope (line 5) | class ArtSysScope extends StatelessWidget {
    method build (line 11) | Widget build(BuildContext context)

FILE: modules/knowledge_system/note/lib/src/view/article_admin.dart
  class ArticleAdmin (line 12) | class ArticleAdmin extends StatefulWidget {
    method createState (line 16) | State<ArticleAdmin> createState()
  class _ArticleAdminState (line 19) | class _ArticleAdminState extends State<ArticleAdmin> {
    method build (line 21) | Widget build(BuildContext context)
    method showAddDialog (line 213) | void showAddDialog(BuildContext context)
  class RichEditor (line 232) | class RichEditor extends StatefulWidget {
    method createState (line 236) | State<RichEditor> createState()
  class _RichEditorState (line 239) | class _RichEditorState extends State<RichEditor> {
    method build (line 243) | Widget build(BuildContext context)

FILE: modules/knowledge_system/note/lib/src/view/article_editor.dart
  class EditArticleDialog (line 8) | class EditArticleDialog extends StatefulWidget {
    method createState (line 20) | _EditArticleDialogState createState()
  class _EditArticleDialogState (line 23) | class _EditArticleDialogState extends State<EditArticleDialog> {
    method initState (line 31) | void initState()
    method dispose (line 50) | void dispose()
    method build (line 61) | Widget build(BuildContext context)

FILE: modules/knowledge_system/note/lib/src/view/article_list.dart
  class ArticleList (line 6) | class ArticleList extends StatelessWidget {
    method build (line 20) | Widget build(BuildContext context)
  type OnUpdateTitle (line 33) | typedef OnUpdateTitle = Function(ArticlePo article, String title);
  class ArticleItem (line 35) | class ArticleItem extends StatefulWidget {
    method createState (line 50) | State<ArticleItem> createState()
  class _ArticleItemState (line 53) | class _ArticleItemState extends State<ArticleItem> {
    method build (line 55) | Widget build(BuildContext context)
    method _updateTitle (line 152) | void _updateTitle()
    method _onEnter (line 162) | void _onEnter(PointerEnterEvent event)
    method _onExit (line 168) | void _onExit(PointerExitEvent event)

FILE: modules/knowledge_system/note/lib/src/view/components/button/button.dart
  class Button (line 4) | class Button extends StatelessWidget {
    method build (line 10) | Widget build(BuildContext context)

FILE: modules/knowledge_system/note/lib/src/view/desktop/article_display.dart
  class ArticleDisplay (line 7) | class ArticleDisplay extends StatelessWidget {
    method build (line 11) | Widget build(BuildContext context)
  class NetworkArticleDisplay (line 40) | class NetworkArticleDisplay extends StatelessWidget {
    method build (line 46) | Widget build(BuildContext context)

FILE: modules/knowledge_system/note/lib/src/view/mobile/mobile_article_list.dart
  class MobileArticleList (line 5) | class MobileArticleList extends StatelessWidget {
    method build (line 19) | Widget build(BuildContext context)
  type OnUpdateTitle (line 36) | typedef OnUpdateTitle = Function(int id, String title);
  class MobileArticleItem (line 38) | class MobileArticleItem extends StatefulWidget {
    method createState (line 53) | State<MobileArticleItem> createState()
  class _MobileArticleItemState (line 56) | class _MobileArticleItemState extends State<MobileArticleItem> {
    method build (line 58) | Widget build(BuildContext context)
    method _updateTitle (line 109) | void _updateTitle()

FILE: modules/knowledge_system/note/lib/src/view/mobile/mobile_article_page.dart
  class MobileArticlePage (line 12) | class MobileArticlePage extends StatefulWidget {
    method createState (line 16) | State<MobileArticlePage> createState()
  class _MobileArticlePageState (line 19) | class _MobileArticlePageState extends State<MobileArticlePage> {
    method initState (line 23) | void initState()
    method _queryScienceArticle (line 37) | Future<void> _queryScienceArticle()
    method build (line 55) | Widget build(BuildContext context)

FILE: modules/knowledge_system/note/lib/src/view/mobile/mobile_editor.dart
  class MobileEditor (line 10) | class MobileEditor extends StatefulWidget {
    method createState (line 16) | State<MobileEditor> createState()
  class _MobileEditorState (line 19) | class _MobileEditorState extends State<MobileEditor> {
    method initState (line 25) | void initState()
    method build (line 39) | Widget build(BuildContext context)
    method _titleFocusNode (line 126) | void _titleFocusNode()
    method showBottomTip (line 134) | void showBottomTip(BuildContext context)
  class PopBottomTip (line 150) | class PopBottomTip extends StatelessWidget {
    method build (line 163) | Widget build(BuildContext context)

FILE: modules/knowledge_system/note/lib/src/view/mobile/note.dart
  class PinnedHeaderSliverNode2 (line 17) | class PinnedHeaderSliverNode2 extends StatefulWidget {
    method createState (line 21) | State<PinnedHeaderSliverNode2> createState()
  class _PinnedHeaderSliverNode2State (line 25) | class _PinnedHeaderSliverNode2State extends State<PinnedHeaderSliverNode...
    method initState (line 30) | void initState()
    method dispose (line 36) | void dispose()
    method build (line 42) | Widget build(BuildContext context)
    method _buildSliverBar (line 101) | Widget _buildSliverBar()
    method _buildTitleText (line 121) | Widget _buildTitleText()
    method _onTap (line 133) | void _onTap(ArticlePo article)
  class _ItemList (line 152) | class _ItemList extends StatelessWidget {
    method build (line 161) | Widget build(BuildContext context)

FILE: modules/knowledge_system/note/lib/src/view/news/news_page.dart
  class NewsPage (line 5) | class NewsPage extends StatefulWidget {
    method createState (line 10) | State<NewsPage> createState()
  class _NewsPageState (line 13) | class _NewsPageState extends State<NewsPage> {
    method initState (line 18) | void initState()
    method build (line 24) | Widget build(BuildContext context)
    method _loadData (line 73) | void _loadData()

FILE: modules/knowledge_system/note/test/parser.dart
  function main (line 3) | main()
  class Category (line 41) | class Category {

FILE: modules/painting_system/draw_system/lib/src/anim/bezier3_player/bezier3_palyer.dart
  class Bezier3Player (line 11) | class Bezier3Player extends StatefulWidget {
    method createState (line 15) | _Bezier3PlayerState createState()
  class _Bezier3PlayerState (line 18) | class _Bezier3PlayerState extends State<Bezier3Player> {
    method dispose (line 22) | void dispose()
    method build (line 28) | Widget build(BuildContext context)
    method _onPanDown (line 44) | void _onPanDown(DragDownDetails details)
    method _onPanUpdate (line 53) | void _onPanUpdate(DragUpdateDetails details)
    method judgeCircleArea (line 58) | bool judgeCircleArea(Offset src, Offset dst, double r)
    method judgeZone (line 62) | void judgeZone(Offset src,{bool update =false})
    method _clear (line 73) | void _clear ()
  class PaperPainter (line 78) | class PaperPainter extends CustomPainter {
    method paint (line 92) | void paint(Canvas canvas, Size size)
    method _drawHelp (line 116) | void _drawHelp(Canvas canvas)
    method _drawSelectPos (line 122) | void _drawSelectPos(Canvas canvas,Size size)
    method shouldRepaint (line 135) | bool shouldRepaint(PaperPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/anim/bezier3_player/touch_info.dart
  class TouchInfo (line 7) | class TouchInfo extends ChangeNotifier {
    method addPoint (line 22) | void addPoint(Offset point)
    method updatePoint (line 27) | void updatePoint(int index, Offset point)
    method reset (line 32) | void reset()

FILE: modules/painting_system/draw_system/lib/src/anim/circle_halo.dart
  class CircleHalo (line 6) | class CircleHalo extends StatefulWidget {
    method createState (line 10) | _CircleHaloState createState()
  class _CircleHaloState (line 13) | class _CircleHaloState extends State<CircleHalo>
    method initState (line 18) | void initState()
    method dispose (line 29) | void dispose()
    method build (line 35) | Widget build(BuildContext context)
  class CircleHaloPainter (line 43) | class CircleHaloPainter extends CustomPainter {
    method paint (line 65) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 110) | bool shouldRepaint(covariant CircleHaloPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/anim/curve_shower/anim_painter.dart
  class AnimPainter (line 7) | class AnimPainter extends CustomPainter {
    method paint (line 24) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 43) | bool shouldRepaint(covariant CustomPainter oldDelegate)
    method _drawAxis (line 45) | void _drawAxis(Canvas canvas, Size size)
    method _drawScale (line 71) | void _drawScale(Canvas canvas, Size size)
    method _drawPoint (line 98) | void _drawPoint(List<double> values, Canvas canvas, Size size)

FILE: modules/painting_system/draw_system/lib/src/anim/curve_shower/curve_anim_shower.dart
  class CurveAnimShower (line 7) | class CurveAnimShower extends StatefulWidget {
    method createState (line 11) | _CurveAnimShowerState createState()
  class _CurveAnimShowerState (line 14) | class _CurveAnimShowerState extends State<CurveAnimShower>
    method initState (line 69) | void initState()
    method dispose (line 79) | void dispose()
    method _collectPoint (line 85) | void _collectPoint()
    method _startAnim (line 89) | void _startAnim()
    method build (line 95) | Widget build(BuildContext context)

FILE: modules/painting_system/draw_system/lib/src/anim/curve_shower/point_data.dart
  class PointData (line 3) | class PointData extends ChangeNotifier {
    method push (line 6) | void push(double value)
    method clear (line 12) | void clear()

FILE: modules/painting_system/draw_system/lib/src/anim/draw_path.dart
  class DrawPath (line 11) | class DrawPath extends StatefulWidget {
    method createState (line 15) | _DrawPathState createState()
  class _DrawPathState (line 18) | class _DrawPathState extends State<DrawPath> with SingleTickerProviderSt...
    method initState (line 22) | void initState()
    method dispose (line 31) | void dispose()
    method build (line 37) | Widget build(BuildContext context)
  class PaperPainter (line 47) | class PaperPainter extends CustomPainter {
    method initPointsWithPolar (line 60) | void initPointsWithPolar()
    method f (line 71) | double f(double thta)
    method paint (line 77) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 128) | bool shouldRepaint(PaperPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/anim/dundun_path.dart
  class DunDunPathPage (line 10) | class DunDunPathPage extends StatefulWidget {
    method createState (line 14) | _DunDunPathPageState createState()
  class _DunDunPathPageState (line 17) | class _DunDunPathPageState extends State<DunDunPathPage>with SingleTicke...
    method initState (line 24) | void initState()
    method dispose (line 34) | void dispose()
    method loadImage (line 39) | void loadImage()
    method build (line 46) | Widget build(BuildContext context)
  class DunDunPainter (line 64) | class DunDunPainter extends CustomPainter {
    method paint (line 77) | void paint(Canvas canvas, Size size)
    method buildBodyPath (line 204) | Path buildBodyPath()
    method buildLeftHandPath (line 213) | Path buildLeftHandPath()
    method buildRightHandPath (line 226) | Path buildRightHandPath()
    method buildFootPath (line 235) | Path buildFootPath()
    method buildErPath (line 249) | Path buildErPath()
    method shouldRepaint (line 263) | bool shouldRepaint(covariant CustomPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/anim/rotate_by_point/angle_panter.dart
  class AnglePainter (line 8) | class AnglePainter extends CustomPainter {
    method paint (line 30) | void paint(Canvas canvas, Size size)
    method drawHelp (line 36) | void drawHelp(Canvas canvas, Size size)
    method drawAnchor (line 85) | void drawAnchor(Canvas canvas, Offset offset)
    method drawHelpText (line 90) | void drawHelpText(
    method shouldRepaint (line 105) | bool shouldRepaint(covariant CustomPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/anim/rotate_by_point/line.dart
  class Line (line 6) | class Line with ChangeNotifier {
    method paint (line 19) | void paint(Canvas canvas)
    method drawAnchor (line 31) | void drawAnchor(Canvas canvas, Offset offset)
    method rotate (line 38) | void rotate(double rotate, {Offset? centre})
    method percent (line 53) | Offset percent(double percent)
    method _rotateByStart (line 60) | void _rotateByStart(double rotate)
    method tick (line 68) | void tick()

FILE: modules/painting_system/draw_system/lib/src/anim/rotate_by_point/rotate_by_point.dart
  class RotateByPointWidget (line 8) | class RotateByPointWidget extends StatefulWidget {
    method createState (line 12) | State<RotateByPointWidget> createState()
  class _RotateByPointWidgetState (line 15) | class _RotateByPointWidgetState extends State<RotateByPointWidget>
    method initState (line 23) | void initState()
    method dispose (line 32) | void dispose()
    method build (line 39) | Widget build(BuildContext context)
    method _updateLine (line 50) | void _updateLine()

FILE: modules/painting_system/draw_system/lib/src/anim/spring_widget.dart
  class SpringWidget (line 4) | class SpringWidget extends StatefulWidget {
    method createState (line 9) | _SpringWidgetState createState()
  class _SpringWidgetState (line 17) | class _SpringWidgetState extends State<SpringWidget> with SingleTickerPr...
    method initState (line 30) | void initState()
    method _updateHeightByAnim (line 38) | void _updateHeightByAnim()
    method dispose (line 44) | void dispose()
    method build (line 51) | Widget build(BuildContext context)
    method _updateSpace (line 67) | void _updateSpace(DragUpdateDetails details)
    method _animateToDefault (line 76) | void _animateToDefault(DragEndDetails details)
  class Interpolator (line 84) | class Interpolator extends Curve {
    method transformInternal (line 88) | double transformInternal(double t)
  class SpringPainter (line 97) | class SpringPainter extends CustomPainter {
    method paint (line 108) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 132) | bool shouldRepaint(covariant SpringPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/art/circle_packing.dart
  class Circle (line 6) | class Circle {
  class CirclePacking (line 12) | class CirclePacking extends StatefulWidget {
    method createState (line 16) | _CirclePackingState createState()
  class _CirclePackingState (line 19) | class _CirclePackingState extends State<CirclePacking> {
    method build (line 21) | Widget build(BuildContext context)
  class CirclePackingPainter (line 35) | class CirclePackingPainter extends CustomPainter {
    method _createCircles (line 43) | void _createCircles(Canvas canvas, Size size)
    method _drawCircles (line 80) | void _drawCircles(Canvas canvas)
    method _doesHaveACollision (line 93) | bool _doesHaveACollision(Circle circle, Size size)
    method paint (line 117) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 125) | bool shouldRepaint(CirclePackingPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/art/cubic_disarray.dart
  class CubicDisarray (line 5) | class CubicDisarray extends StatefulWidget {
    method createState (line 9) | _CubicDisarrayState createState()
  class _CubicDisarrayState (line 12) | class _CubicDisarrayState extends State<CubicDisarray> {
    method build (line 14) | Widget build(BuildContext context)
  class CubicDisarrayPainter (line 28) | class CubicDisarrayPainter extends CustomPainter {
    method _draw (line 29) | void _draw(double width, double height, Canvas canvas, Size size)
    method paint (line 43) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 78) | bool shouldRepaint(CubicDisarrayPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/art/hypnotic_squares.dart
  class HypnoticSquares (line 7) | class HypnoticSquares extends StatefulWidget {
    method createState (line 11) | _HypnoticSquaresState createState()
  class _HypnoticSquaresState (line 14) | class _HypnoticSquaresState extends State<HypnoticSquares> {
    method build (line 16) | Widget build(BuildContext context)
  class HypnoticSquaresPainter (line 30) | class HypnoticSquaresPainter extends CustomPainter {
    method _drawRect (line 37) | void _drawRect(Canvas canvas, double x, double y, double size)
    method _draw (line 47) | void _draw(
    method paint (line 77) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 102) | bool shouldRepaint(HypnoticSquaresPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/art/joy_division.dart
  class JoyDivision (line 5) | class JoyDivision extends StatefulWidget {
    method createState (line 9) | _JoyDivisionState createState()
  class _JoyDivisionState (line 12) | class _JoyDivisionState extends State<JoyDivision> {
    method build (line 14) | Widget build(BuildContext context)
  class JoyDivisionPainter (line 28) | class JoyDivisionPainter extends CustomPainter {
    method paint (line 30) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 71) | bool shouldRepaint(JoyDivisionPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/art/piet_mondrian.dart
  class PietMondrian (line 7) | class PietMondrian extends StatefulWidget {
    method createState (line 11) | _PietMondrianState createState()
  class _PietMondrianState (line 14) | class _PietMondrianState extends State<PietMondrian> {
    method build (line 16) | Widget build(BuildContext context)
  class Square (line 30) | class Square {
    method toJson (line 45) | Map toJson()
  class PietMondrianPainnter (line 56) | class PietMondrianPainnter extends CustomPainter {
    method _draw (line 57) | void _draw(Canvas canvas, List<Square> squares)
    method _splitSquaresWith (line 89) | void _splitSquaresWith(Map coordinates, List<Square> squares)
    method _splitOnX (line 112) | void _splitOnX(Square square, double splitAt, List<Square> squares)
    method _splitOnY (line 133) | void _splitOnY(Square square, double splitAt, List<Square> squares)
    method paint (line 155) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 176) | bool shouldRepaint(PietMondrianPainnter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/art/tiled_lines.dart
  class TiledLines (line 4) | class TiledLines extends StatefulWidget {
    method createState (line 8) | _TiledLinesState createState()
  class _TiledLinesState (line 11) | class _TiledLinesState extends State<TiledLines> {
    method build (line 13) | Widget build(BuildContext context)
  class TiledLinesPainter (line 27) | class TiledLinesPainter extends CustomPainter {
    method _drawLine (line 32) | void _drawLine(
    method paint (line 60) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 70) | bool shouldRepaint(TiledLinesPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/art/triangular_mesh.dart
  class Point (line 6) | class Point {
  class TriangularMesh (line 11) | class TriangularMesh extends StatefulWidget {
    method createState (line 15) | _TriangularMeshState createState()
  class _TriangularMeshState (line 18) | class _TriangularMeshState extends State<TriangularMesh> {
    method build (line 20) | Widget build(BuildContext context)
  class TriangularMeshPainter (line 34) | class TriangularMeshPainter extends CustomPainter {
    method _drawTriangle (line 35) | void _drawTriangle(Canvas canvas, Point pointA, Point pointB, Point po...
    method paint (line 60) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 99) | bool shouldRepaint(TriangularMeshPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/art/un_deux_trois.dart
  class UnDeuxTrois (line 5) | class UnDeuxTrois extends StatefulWidget {
    method createState (line 9) | _UnDeuxTroisState createState()
  class _UnDeuxTroisState (line 12) | class _UnDeuxTroisState extends State<UnDeuxTrois> {
    method build (line 14) | Widget build(BuildContext context)
  class UnDeuxTroisPainter (line 28) | class UnDeuxTroisPainter extends CustomPainter {
    method _draw (line 29) | void _draw(
    method paint (line 56) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 76) | bool shouldRepaint(UnDeuxTroisPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/base/clock_widget.dart
  class ClockWidget (line 10) | class ClockWidget extends StatefulWidget {
    method createState (line 16) | _ClockWidgetState createState()
  class _ClockWidgetState (line 19) | class _ClockWidgetState extends State<ClockWidget>
    method initState (line 25) | void initState()
    method dispose (line 31) | void dispose()
    method _tick (line 37) | void _tick(Duration duration)
    method build (line 44) | Widget build(BuildContext context)
  class ClockBgPainter (line 63) | class ClockBgPainter extends CustomPainter {
    method paint (line 71) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 80) | bool shouldRepaint(covariant ClockBgPainter oldDelegate)
    method drawOuterCircle (line 84) | void drawOuterCircle(Canvas canvas)
    method _paintArc (line 98) | void _paintArc(Canvas canvas)
    method drawScale (line 121) | void drawScale(Canvas canvas)
    method drawText (line 171) | void drawText(Canvas canvas)
  class ClockPainter (line 204) | class ClockPainter extends CustomPainter {
    method paint (line 214) | void paint(Canvas canvas, Size size)
    method drawArrow (line 220) | void drawArrow(Canvas canvas, DateTime time)
    method shouldRepaint (line 251) | bool shouldRepaint(covariant ClockPainter oldDelegate)
    method drawHour (line 278) | void drawHour(Canvas canvas)
    method drawMinus (line 286) | void drawMinus(Canvas canvas)
    method drawSecond (line 301) | void drawSecond(Canvas canvas)

FILE: modules/painting_system/draw_system/lib/src/base/digital/digital_painter.dart
  class DigitalPainter (line 8) | class DigitalPainter extends CustomPainter {
    method paint (line 20) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 26) | bool shouldRepaint(covariant DigitalPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/base/digital/digital_path.dart
  class DigitalPath (line 6) | class DigitalPath {
    method buildPath (line 17) | Path buildPath(int value,double width)
    method combineAll (line 25) | Path combineAll(List<Path> paths,
    method _initDigitalPathMap (line 36) | void _initDigitalPathMap()

FILE: modules/painting_system/draw_system/lib/src/base/digital/digital_shower.dart
  class DigitalShower (line 6) | class DigitalShower extends StatefulWidget {
    method createState (line 10) | State<DigitalShower> createState()
  class _DigitalShowerState (line 13) | class _DigitalShowerState extends State<DigitalShower> {
    method build (line 19) | Widget build(BuildContext context)

FILE: modules/painting_system/draw_system/lib/src/base/digital/digital_widget.dart
  class SingleDigitalWidget (line 7) | class SingleDigitalWidget extends StatelessWidget {
    method build (line 23) | Widget build(BuildContext context)
  class MultiDigitalWidget (line 36) | class MultiDigitalWidget extends StatelessWidget {
    method build (line 58) | Widget build(BuildContext context)

FILE: modules/painting_system/draw_system/lib/src/base/draw_grid_axis.dart
  class DrawGridAxis (line 9) | class DrawGridAxis extends StatelessWidget {
    method build (line 13) | Widget build(BuildContext context)
  class PaperPainter (line 19) | class PaperPainter extends CustomPainter {
    method paint (line 23) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 29) | bool shouldRepaint(PaperPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/base/draw_path_fun.dart
  class DrawPathFun (line 10) | class DrawPathFun extends StatelessWidget {
    method build (line 14) | Widget build(BuildContext context)
  class PaperPainter (line 27) | class PaperPainter extends CustomPainter {
    method initPoints (line 45) | void initPoints()
    method initPointsWithPolar (line 53) | void initPointsWithPolar()
    method f (line 61) | double f(double thta)
    method paint (line 68) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 95) | bool shouldRepaint(CustomPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/base/draw_picture.dart
  class DrawPicture (line 13) | class DrawPicture extends StatefulWidget {
    method createState (line 17) | _DrawPictureState createState()
  class _DrawPictureState (line 20) | class _DrawPictureState extends State<DrawPicture> {
    method initState (line 24) | void initState()
    method _loadImage (line 29) | void _loadImage()
    method loadImageFromAssets (line 35) | Future<ui.Image> loadImageFromAssets(String path)
    method build (line 43) | Widget build(BuildContext context)
  class PaperPainter (line 49) | class PaperPainter extends CustomPainter {
    method paint (line 63) | void paint(Canvas canvas, Size size)
    method _drawLine (line 69) | void _drawLine(Size size, Canvas canvas)
    method _drawImage (line 79) | void _drawImage(Canvas canvas, Size size)
    method shouldRepaint (line 93) | bool shouldRepaint(PaperPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/base/n_side/n_side_page.dart
  class NSidePage (line 5) | class NSidePage extends StatefulWidget {
    method createState (line 11) | State<NSidePage> createState()
  class _NSidePageState (line 14) | class _NSidePageState extends State<NSidePage> {
    method initState (line 18) | void initState()
    method build (line 24) | Widget build(BuildContext context)

FILE: modules/painting_system/draw_system/lib/src/base/n_side/shape_painter.dart
  class ShapePainter (line 6) | class ShapePainter extends CustomPainter {
    method paint (line 12) | void paint(Canvas canvas, Size size)
    method _drawShape (line 32) | void _drawShape(Canvas canvas, List<Offset> points)
    method _drawShapeHelper (line 42) | void _drawShapeHelper(Canvas canvas, List<Offset> points, double radius)
    method drawAnchor (line 56) | void drawAnchor(Canvas canvas, Offset offset)
    method shouldRepaint (line 62) | bool shouldRepaint(covariant ShapePainter oldDelegate)
    method drawAxis (line 75) | void drawAxis(Canvas canvas, Size size)
    method drawHelpText (line 108) | void drawHelpText(

FILE: modules/painting_system/draw_system/lib/src/base/polar/angle_painter.dart
  class PolarPainter (line 8) | class PolarPainter extends CustomPainter {
    method paint (line 25) | void paint(Canvas canvas, Size size)
    method collect (line 34) | List<Polar2D> collect()
    method drawHelp (line 44) | void drawHelp(Canvas canvas, Size size)
    method drawHelpText (line 68) | void drawHelpText(
    method shouldRepaint (line 83) | bool shouldRepaint(covariant CustomPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/base/polar/polar.dart
  class Polar2D (line 5) | class Polar2D {

FILE: modules/painting_system/draw_system/lib/src/base/polar/polar_painter_widget.dart
  class PolarPainterWidget (line 5) | class PolarPainterWidget extends StatelessWidget {
    method build (line 9) | Widget build(BuildContext context)

FILE: modules/painting_system/draw_system/lib/src/base/windmill.dart
  class WindmillWidget (line 6) | class WindmillWidget extends StatefulWidget {
    method createState (line 10) | State<WindmillWidget> createState()
  class _WindmillWidgetState (line 13) | class _WindmillWidgetState extends State<WindmillWidget>
    method initState (line 22) | void initState()
    method dispose (line 29) | void dispose()
    method build (line 35) | Widget build(BuildContext context)
  class WindmillPainter (line 55) | class WindmillPainter extends CustomPainter {
    method paint (line 61) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 89) | bool shouldRepaint(covariant CustomPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/bloc/gallery_unit/bloc.dart
  class GalleryUnitBloc (line 4) | class GalleryUnitBloc extends Cubit<String>{
    method loadGalleryInfo (line 7) | void loadGalleryInfo()

FILE: modules/painting_system/draw_system/lib/src/desk_ui/desk_frame.dart
  class DeskFrameShower (line 10) | class DeskFrameShower extends StatelessWidget {
    method build (line 27) | Widget build(BuildContext context)

FILE: modules/painting_system/draw_system/lib/src/desk_ui/desk_gallery_unit.dart
  class DeskGalleryUnit (line 18) | class DeskGalleryUnit extends StatefulWidget {
    method createState (line 22) | _DeskGalleryUnitState createState()
  class _DeskGalleryUnitState (line 25) | class _DeskGalleryUnitState extends State<DeskGalleryUnit> {
    method dispose (line 29) | void dispose()
    method build (line 49) | Widget build(BuildContext context)
    method _buildContent (line 65) | Widget _buildContent()

FILE: modules/painting_system/draw_system/lib/src/fun/bufeng/bufeng_panel.dart
  class BufengPanel (line 6) | class BufengPanel extends StatefulWidget {
    method createState (line 10) | State<BufengPanel> createState()
  class _BufengPanelState (line 13) | class _BufengPanelState extends State<BufengPanel> {
    method addNeedle (line 18) | void addNeedle({int count = 1})
    method build (line 25) | Widget build(BuildContext context)

FILE: modules/painting_system/draw_system/lib/src/fun/bufeng/config.dart
  class Line (line 5) | class Line {
    method isActive (line 14) | bool isActive(double gap)
  class Config (line 23) | class Config extends ChangeNotifier {
    method toString (line 36) | String toString()
    method addNeedle (line 44) | void addNeedle()
    method _createNeedle (line 52) | Line _createNeedle()
    method clear (line 63) | void clear()

FILE: modules/painting_system/draw_system/lib/src/fun/bufeng/painter.dart
  class PiPainter (line 4) | class PiPainter extends CustomPainter {
    method paint (line 10) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 47) | bool shouldRepaint(covariant PiPainter oldDelegate)
    method drawHelpText (line 56) | void drawHelpText(

FILE: modules/painting_system/draw_system/lib/src/fun/dundun_view.dart
  class DunDunView (line 7) | class DunDunView extends StatefulWidget {
    method createState (line 11) | _DunDunViewState createState()
  class _DunDunViewState (line 14) | class _DunDunViewState extends State<DunDunView> {
    method initState (line 18) | void initState()
    method loadImage (line 23) | void loadImage()
    method build (line 30) | Widget build(BuildContext context)
  class DunDunPainter (line 44) | class DunDunPainter extends CustomPainter {
    method paint (line 55) | void paint(Canvas canvas, Size size)
    method buildBodyPath (line 274) | Path buildBodyPath()
    method buildLeftHandPath (line 283) | Path buildLeftHandPath()
    method buildRightHandPath (line 296) | Path buildRightHandPath()
    method buildFootPath (line 305) | Path buildFootPath()
    method buildErPath (line 319) | Path buildErPath()
    method paintBodyPoints (line 332) | void paintBodyPoints(ui.Canvas canvas)
    method paintErPoints (line 355) | void paintErPoints(ui.Canvas canvas)
    method paintHandsHelpPoints (line 384) | void paintHandsHelpPoints(ui.Canvas canvas)
    method paintRightHandsHelpPoints (line 403) | void paintRightHandsHelpPoints(ui.Canvas canvas)
    method paintLeftFoodHelpPoints (line 426) | void paintLeftFoodHelpPoints(ui.Canvas canvas)
    method shouldRepaint (line 448) | bool shouldRepaint(covariant CustomPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/fun/random_portrait.dart
  class Position (line 8) | class Position {
    method toString (line 15) | String toString()
  class RandomPortrait (line 20) | class RandomPortrait extends StatefulWidget {
    method createState (line 24) | _RandomPortraitState createState()
  class _RandomPortraitState (line 27) | class _RandomPortraitState extends State<RandomPortrait> {
    method build (line 33) | Widget build(BuildContext context)
    method _initPosition (line 43) | void _initPosition()
  class PortraitPainter (line 63) | class PortraitPainter extends CustomPainter {
    method paint (line 77) | void paint(Canvas canvas, Size size)
    method _drawBlock (line 90) | void _drawBlock(double dW, double dH, Canvas canvas, Position position)
    method shouldRepaint (line 98) | bool shouldRepaint(PortraitPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/fun/stemp/stamp_data.dart
  class StampData (line 5) | class StampData extends ChangeNotifier {
    method push (line 8) | void push(Stamp stamp)
    method removeLast (line 13) | void removeLast()
    method activeLast (line 18) | void activeLast({Color color = Colors.blue})
    method clear (line 23) | void clear()
    method animateAt (line 28) | void animateAt(int index, double radius)
    method checkWin (line 34) | GameState checkWin(double length)
    method _checkWinByColor (line 44) | bool _checkWinByColor(double length,Color color)
    method _checkWinInline (line 56) | bool _checkWinInline(List<Point<int>> points, int max)
    method _check (line 74) | bool _check(int x, int y, List<Point> points, CheckModel checkModel,in...
  type CheckModel (line 91) | enum CheckModel {
  type GameState (line 98) | enum GameState{
  class Stamp (line 104) | class Stamp {
    method rePath (line 141) | void rePath()

FILE: modules/painting_system/draw_system/lib/src/fun/stemp/stamp_paper.dart
  class StampPaper (line 7) | class StampPaper extends StatefulWidget {
    method createState (line 11) | _StampPaperState createState()
  class _StampPaperState (line 14) | class _StampPaperState extends State<StampPaper>
    method initState (line 29) | void initState()
    method _listenAnim (line 35) | void _listenAnim()
    method build (line 44) | Widget build(BuildContext context)
    method _onTapDown (line 62) | void _onTapDown(TapDownDetails details)
    method checkZone (line 78) | int checkZone(Offset src)
    method _onTapUp (line 89) | void _onTapUp(TapUpDetails details)
    method _clear (line 109) | void _clear()
    method _removeLast (line 114) | void _removeLast()
    method dispose (line 121) | void dispose()
  class BackGroundPainter (line 127) | class BackGroundPainter extends CustomPainter {
    method paint (line 157) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 185) | bool shouldRepaint(covariant BackGroundPainter oldDelegate)
  class StampPainter (line 190) | class StampPainter extends CustomPainter {
    method paint (line 201) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 226) | bool shouldRepaint(covariant StampPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/gallery_card_item.dart
  class GalleryCardItem (line 13) | class GalleryCardItem extends StatelessWidget {
    method build (line 24) | Widget build(BuildContext context)
  class GalleryInfo (line 120) | class GalleryInfo {

FILE: modules/painting_system/draw_system/lib/src/gallery_detail_page.dart
  class GalleryDetailPage (line 16) | class GalleryDetailPage extends StatefulWidget {
    method createState (line 24) | _GalleryDetailPageState createState()
  class _GalleryDetailPageState (line 27) | class _GalleryDetailPageState extends State<GalleryDetailPage> {
    method initState (line 32) | void initState()
    method dispose (line 38) | void dispose()
    method build (line 77) | Widget build(BuildContext context)
    method _onPageChanged (line 102) | void _onPageChanged(int index)
    method buildTopBar (line 106) | Widget buildTopBar(BuildContext context)
    method _buildPrevBtn (line 129) | Widget _buildPrevBtn()
    method _buildNextBtn (line 149) | Widget _buildNextBtn()
    method _switchPrevPage (line 169) | void _switchPrevPage()
    method _switchNextPage (line 178) | void _switchNextPage()
    method buildTitle (line 189) | Widget buildTitle(BuildContext context)
    method _buildIndicatorText (line 220) | Widget _buildIndicatorText(BuildContext context, int value, Widget? ch...

FILE: modules/painting_system/draw_system/lib/src/gallery_factory.dart
  type GalleryType (line 41) | enum GalleryType { base, anim, particle, fun, art }
  class GalleryFactory (line 43) | class GalleryFactory {
    method getGalleryByName (line 44) | List<Widget> getGalleryByName(GalleryType type,BuildContext context)

FILE: modules/painting_system/draw_system/lib/src/gallery_unit.dart
  class GalleryUnit (line 19) | class GalleryUnit extends StatelessWidget {
    method build (line 23) | Widget build(BuildContext context)
  class PhoneGalleryUnit (line 33) | class PhoneGalleryUnit extends StatefulWidget {
    method createState (line 37) | _PhoneGalleryUnitState createState()
  class _PhoneGalleryUnitState (line 40) | class _PhoneGalleryUnitState extends State<PhoneGalleryUnit> {
    method initState (line 49) | void initState()
    method dispose (line 67) | void dispose()
    method build (line 86) | Widget build(BuildContext context)
    method _buildTitle (line 118) | Widget _buildTitle(BuildContext context)
    method _buildContentByState (line 140) | Widget _buildContentByState(BuildContext context, String state)
    method _buildContent (line 147) | Widget _buildContent(String galleryInfo)
    method _buildAnimItemByIndex (line 198) | Widget _buildAnimItemByIndex(BuildContext context, Widget? child, int ...
    method _buildDiver (line 218) | Widget _buildDiver()
    method _fixPosition (line 239) | int _fixPosition(int realPos, int initPos, int length)

FILE: modules/painting_system/draw_system/lib/src/particle/out/clock_fx.dart
  class ClockFx (line 24) | class ClockFx with ChangeNotifier {
    method init (line 46) | void init()
    method setTime (line 53) | void setTime(DateTime time)
    method setSize (line 57) | void setSize(Size size)
    method resetParticle (line 72) | Particle resetParticle(int i)
    method tick (line 80) | void tick(Duration duration)
    method updateParticles (line 85) | void updateParticles(Duration duration)
    method _activateParticle (line 135) | void _activateParticle(Particle p)
    method _getDistanceFromCenter (line 174) | double _getDistanceFromCenter(Particle p)
    method _getHourRadians (line 181) | double _getHourRadians()
    method _getMinuteRadians (line 187) | double _getMinuteRadians()
    method _isBetween (line 191) | bool _isBetween(double value, double min, double max)

FILE: modules/painting_system/draw_system/lib/src/particle/out/clock_widget.dart
  class ClockWidget (line 11) | class ClockWidget extends StatefulWidget {
    method createState (line 17) | _ClockWidgetState createState()
  class _ClockWidgetState (line 20) | class _ClockWidgetState extends State<ClockWidget>
    method initState (line 26) | void initState()
    method dispose (line 36) | void dispose()
    method _tick (line 42) | void _tick(Duration duration)
    method build (line 50) | Widget build(BuildContext context)
  class ClockFxPainter (line 61) | class ClockFxPainter extends CustomPainter {
    method paint (line 67) | void paint(Canvas canvas, Size size)
    method shouldRepaint (line 83) | bool shouldRepaint(covariant ClockFxPainter oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/particle/out/particle.dart
  class Particle (line 3) | class Particle {

FILE: modules/painting_system/draw_system/lib/src/particle/out/rnd.dart
  class Rnd (line 4) | class Rnd {
    method getInt (line 15) | int getInt(int min, int max)
    method getDouble (line 20) | double getDouble(double min, double max)
    method getBool (line 25) | bool getBool([double chance = 0.5])
    method shuffle (line 30) | List shuffle(List list)
    method getItem (line 44) | dynamic getItem(List list)

FILE: modules/painting_system/draw_system/lib/src/particle/random/particle.dart
  class Particle (line 3) | class Particle {

FILE: modules/painting_system/draw_system/lib/src/particle/random/particle_manage.dart
  class ParticleManage (line 9) | class ParticleManage with ChangeNotifier {
    method addParticle (line 16) | void addParticle(Particle particle)
    method tick (line 21) | void tick()
    method doUpdate (line 26) | void doUpdate(Particle p)
    method reset (line 53) | void reset()

FILE: modules/painting_system/draw_system/lib/src/particle/random/random_particle.dart
  class RandomParticle (line 14) | class RandomParticle extends StatefulWidget {
    method createState (line 18) | _RandomParticleState createState()
  class _RandomParticleState (line 21) | class _RandomParticleState extends State<RandomParticle> with SingleTick...
    method initState (line 28) | void initState()
    method addParticle (line 41) | void addParticle(Timer timer)
    method randomRGB (line 55) | Color randomRGB({int limitR = 0, int limitG = 0, int limitB = 0,})
    method dispose (line 63) | void dispose()
    method build (line 78) | Widget build(BuildContext context)

FILE: modules/painting_system/draw_system/lib/src/particle/random/world_render.dart
  class WorldRender (line 10) | class WorldRender extends CustomPainter {
    method paint (line 23) | void paint(Canvas canvas, Size size)
    method drawParticle (line 29) | void drawParticle(Canvas canvas, Particle particle)
    method shouldRepaint (line 35) | bool shouldRepaint(covariant WorldRender oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/particle/split/particle.dart
  class Particle (line 3) | class Particle {
    method copyWith (line 39) | Particle copyWith(

FILE: modules/painting_system/draw_system/lib/src/particle/split/particle_manage.dart
  class ParticleManage (line 11) | class ParticleManage with ChangeNotifier {
    method setParticles (line 19) | void setParticles(List<Particle> particles)
    method addParticle (line 23) | void addParticle(Particle particle)
    method tick (line 28) | void tick()
    method doUpdate (line 35) | void doUpdate(Particle p)
    method reset (line 77) | void reset()
    method randomRGB (line 84) | Color randomRGB({

FILE: modules/painting_system/draw_system/lib/src/particle/split/particle_split.dart
  class ParticleSplit (line 12) | class ParticleSplit extends StatefulWidget {
    method createState (line 16) | _ParticleSplitState createState()
  class _ParticleSplitState (line 19) | class _ParticleSplitState extends State<ParticleSplit> with SingleTicker...
    method initState (line 25) | void initState()
    method dispose (line 41) | void dispose()
    method build (line 55) | Widget build(BuildContext context)
    method initParticle (line 82) | void initParticle()

FILE: modules/painting_system/draw_system/lib/src/particle/split/world_render.dart
  class WorldRender (line 10) | class WorldRender extends CustomPainter {
    method paint (line 23) | void paint(Canvas canvas, Size size)
    method drawParticle (line 29) | void drawParticle(Canvas canvas, Particle particle)
    method shouldRepaint (line 35) | bool shouldRepaint(covariant WorldRender oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/particle/split_img/particle.dart
  class Particle (line 3) | class Particle {
    method copyWith (line 39) | Particle copyWith(

FILE: modules/painting_system/draw_system/lib/src/particle/split_img/particle_manage.dart
  class ParticleManage (line 11) | class ParticleManage with ChangeNotifier {
    method setParticles (line 20) | void setParticles(List<Particle> particles)
    method addParticle (line 24) | void addParticle(Particle particle)
    method tick (line 29) | void tick({bool run=true})
    method doUpdate (line 40) | void doUpdate(Particle p)
    method reset (line 65) | void reset()
    method randomRGB (line 72) | Color randomRGB({

FILE: modules/painting_system/draw_system/lib/src/particle/split_img/split_image.dart
  class SplitImage (line 13) | class SplitImage extends StatefulWidget {
    method createState (line 17) | _SplitImageState createState()
  class _SplitImageState (line 20) | class _SplitImageState extends State<SplitImage> with SingleTickerProvid...
    method initState (line 26) | void initState()
    method dispose (line 43) | void dispose()
    method build (line 50) | Widget build(BuildContext context)
    method initParticles (line 74) | void initParticles()

FILE: modules/painting_system/draw_system/lib/src/particle/split_img/world_render.dart
  class WorldRender (line 10) | class WorldRender extends CustomPainter {
    method paint (line 23) | void paint(Canvas canvas, Size size)
    method drawParticle (line 29) | void drawParticle(Canvas canvas, Particle particle)
    method shouldRepaint (line 36) | bool shouldRepaint(covariant WorldRender oldDelegate)

FILE: modules/painting_system/draw_system/lib/src/picture_frame.dart
  class PictureFrame (line 10) | class PictureFrame extends StatelessWidget {
    method build (line 26) | Widget build(BuildContext context)
  class FramePainter (line 51) | class FramePainter extends CustomPainter {
    method paint (line 53) | void paint(Canvas canvas, Size size)
    method drawCorner (line 88) | void drawCorner(Paint myPaint, Canvas canvas)
    method shouldRepaint (line 106) | bool shouldRepaint(covariant CustomPainter oldDelegate)
  class FrameShower (line 111) | class FrameShower extends StatelessWidget {
    method build (line 127) | Widget build(BuildContext context)
    method _launch (line 186) | void _launch()

FILE: modules/painting_system/draw_system/lib/src/utils/coordinate.dart
  class Coordinate (line 6) | @immutable
    method paint (line 28) | void paint(Canvas canvas, Size size)
    method _drawAxis (line 76) | void _drawAxis(Canvas canvas, Size size)
    method _drawGridLine (line 94) | void _drawGridLine(Canvas canvas, Size size)
    method _drawAxisText (line 122) | void _drawAxisText(Canvas canvas, String str,
    method _drawText (line 145) | void _drawText(Canvas canvas, Size size)

FILE: modules/painting_system/draw_system/test/draw_system_test.dart
  function main (line 5) | void main()

FILE: modules/tools_system/pkg_player/example/lib/app_theme.dart
  function lightTheme (line 8) | ThemeData lightTheme()

FILE: modules/tools_system/pkg_player/example/lib/main.dart
  class UnitApiAuth (line 8) | class UnitApiAuth extends ApiAuth {
  function main (line 16) | void main()
  class MyApp (line 22) | class MyApp extends StatelessWidget {
    method build (line 27) | Widget build(BuildContext context)
  class MyHomePage (line 37) | class MyHomePage extends StatefulWidget {
    method createState (line 52) | State<MyHomePage> createState()
  class _MyHomePageState (line 55) | class _MyHomePageState extends State<MyHomePage> {
    method _incrementCounter (line 58) | void _incrementCounter()
    method build (line 70) | Widget build(BuildContext context)

FILE: modules/tools_system/pkg_player/example/linux/flutter/generated_plugin_registrant.cc
  function fl_register_plugins (line 10) | void fl_register_plugins(FlPluginRegistry* registry) {

FILE: modules/tools_system/pkg_player/example/linux/runner/main.cc
  function main (line 3) | int main(int argc, char** argv) {

FILE: modules/tools_system/pkg_player/example/linux/runner/my_application.cc
  type _MyApplication (line 10) | struct _MyApplication {
  function my_application_activate (line 18) | static void my_application_activate(GApplication* application) {
  function gboolean (line 66) | static gboolean my_application_local_command_line(GApplication* applicat...
  function my_application_startup (line 85) | static void my_application_startup(GApplication* application) {
  function my_application_shutdown (line 94) | static void my_application_shutdown(GApplication* application) {
  function my_application_dispose (line 103) | static void my_application_dispose(GObject* object) {
  function my_application_class_init (line 109) | static void my_application_class_init(MyApplicationClass* klass) {
  function my_application_init (line 117) | static void my_application_init(MyApplication* self) {}
  function MyApplication (line 119) | MyApplication* my_application_new() {

FILE: modules/tools_system/pkg_player/example/windows/flutter/generated_plugin_registrant.cc
  function RegisterPlugins (line 11) | void RegisterPlugins(flutter::PluginRegistry* registry) {

FILE: modules/tools_system/pkg_player/example/windows/runner/flutter_window.cpp
  function LRESULT (line 50) | LRESULT

FILE: modules/tools_system/pkg_player/example/windows/runner/flutter_window.h
  function class (line 12) | class FlutterWindow : public Win32Window {

FILE: modules/tools_system/pkg_player/example/windows/runner/main.cpp
  function wWinMain (line 8) | int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev,

FILE: modules/tools_system/pkg_player/example/windows/runner/utils.cpp
  function CreateAndAttachConsole (line 10) | void CreateAndAttachConsole() {
  function GetCommandLineArguments (line 24) | std::vector<std::string> GetCommandLineArguments() {
  function Utf8FromUtf16 (line 44) | std::string Utf8FromUtf16(const wchar_t* utf16_string) {

FILE: modules/tools_system/pkg_player/example/windows/runner/win32_window.cpp
  function Scale (line 36) | int Scale(int source, double scale_factor) {
  function EnableFullDpiSupportIfAvailable (line 42) | void EnableFullDpiSupportIfAvailable(HWND hwnd) {
  class WindowClassRegistrar (line 59) | class WindowClassRegistrar {
    method WindowClassRegistrar (line 64) | static WindowClassRegistrar* GetInstance() {
    method WindowClassRegistrar (line 80) | WindowClassRegistrar() = default;
  function wchar_t (line 89) | const wchar_t* WindowClassRegistrar::GetWindowClass() {
  function LRESULT (line 157) | LRESULT CALLBACK Win32Window::WndProc(HWND const window,
  function LRESULT (line 176) | LRESULT
  function Win32Window (line 236) | Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept {
  function RECT (line 252) | RECT Win32Window::GetClientArea() {
  function HWND (line 258) | HWND Win32Window::GetHandle() {

FILE: modules/tools_system/pkg_player/example/windows/runner/win32_window.h
  type Size (line 21) | struct Size {

FILE: modules/tools_system/pkg_player/lib/src/bloc/category/category_cubit.dart
  class CategoryCubit (line 5) | class CategoryCubit extends Cubit<CategoryState> {
    method loadCategories (line 10) | Future<void> loadCategories()

FILE: modules/tools_system/pkg_player/lib/src/bloc/category/category_state.dart
  class CategoryState (line 5) | abstract class CategoryState extends Equatable {
  class CategoryInitial (line 12) | class CategoryInitial extends CategoryState {}
  class CategoryLoading (line 14) | class CategoryLoading extends CategoryState {}
  class CategoryLoaded (line 16) | class CategoryLoaded extends CategoryState {
  class CategoryError (line 25) | class CategoryError extends CategoryState {

FILE: modules/tools_system/pkg_player/lib/src/bloc/comments/comment_replies_cubit.dart
  class CommentRepliesCubit (line 5) | class CommentRepliesCubit extends Cubit<CommentRepliesState> {
    method loadReplies (line 14) | Future<void> loadReplies({bool isRefresh = false})
    method loadMore (line 37) | Future<bool> loadMore()

FILE: modules/tools_system/pkg_player/lib/src/bloc/comments/comment_replies_state.dart
  class CommentRepliesState (line 4) | abstract class CommentRepliesState extends Equatable {
  class CommentRepliesInitial (line 8) | class CommentRepliesInitial extends CommentRepliesState {
  class CommentRepliesLoading (line 13) | class CommentRepliesLoading extends CommentRepliesState {
  class CommentRepliesLoaded (line 18) | class CommentRepliesLoaded extends CommentRepliesState {
  class CommentRepliesError (line 27) | class CommentRepliesError extends CommentRepliesState {

FILE: modules/tools_system/pkg_player/lib/src/bloc/comments/comments_cubit.dart
  class CommentsCubit (line 6) | class CommentsCubit extends Cubit<CommentsState> {
    method loadComments (line 16) | Future<void> loadComments({bool isRefresh = false})
    method loadMore (line 46) | Future<bool> loadMore()
    method sendComment (line 72) | Future<void> sendComment(String content,
    method _updateCommentsInMemory (line 93) | void _updateCommentsInMemory(
    method slice (line 146) | void slice()

FILE: modules/tools_system/pkg_player/lib/src/bloc/comments/comments_state.dart
  class CommentsState (line 3) | abstract class CommentsState {}
  class CommentsInitial (line 5) | class CommentsInitial extends CommentsState {}
  class CommentsLoading (line 7) | class CommentsLoading extends CommentsState {}
  class CommentsLoaded (line 9) | class CommentsLoaded extends CommentsState {
  class CommentsError (line 15) | class CommentsError extends CommentsState {
  class CommentSending (line 21) | class CommentSending extends CommentsState {

FILE: modules/tools_system/pkg_player/lib/src/bloc/packages/package_cubit.dart
  class PackageCubit (line 6) | class PackageCubit extends Cubit<PackageState> {
    method loadPackagesForCategory (line 13) | Future<void> loadPackagesForCategory(String categoryKey,
    method loadMore (line 60) | Future<bool> loadMore(String key)
    method clearPackages (line 89) | void clearPackages()

FILE: modules/tools_system/pkg_player/lib/src/bloc/packages/package_state.dart
  class PackageState (line 3) | abstract class PackageState {
    method isLoading (line 6) | bool isLoading(String key)
    method getResult (line 8) | PackageResult? getResult(String key)
  class PackageInitial (line 11) | class PackageInitial extends PackageState {}
  class PackageLoading (line 13) | class PackageLoading extends PackageState {
    method isLoading (line 15) | bool isLoading(String key)
  class PackageLoaded (line 18) | class PackageLoaded extends PackageState {
    method isLoading (line 28) | bool isLoading(String key)
    method getResult (line 31) | PackageResult? getResult(String key)
  class PackageError (line 36) | class PackageError extends PackageState {
  class PackageResult (line 42) | class PackageResult {

FILE: modules/tools_system/pkg_player/lib/src/l10n/gen/l10n.dart
  class PkgL10n (line 64) | abstract class PkgL10n {
    method of (line 69) | PkgL10n of(BuildContext context)
    method monthsAgo (line 102) | String monthsAgo(Object diff)
    method yearsAgo (line 108) | String yearsAgo(Object diff)
    method weeksAgo (line 114) | String weeksAgo(Object diff)
    method daysAgo (line 120) | String daysAgo(Object diff)
    method hoursAgo (line 126) | String hoursAgo(Object diff)
    method minutesAgo (line 132) | String minutesAgo(Object diff)
    method commentsOfPackage (line 138) | String commentsOfPackage(Object packageName)
    method saveFailed (line 198) | String saveFailed(Object error)
    method loadFailedWithMessage (line 270) | String loadFailedWithMessage(Object message)
    method replyToGuest (line 348) | String replyToGuest(Object guestName)
    method replyToParent (line 354) | String replyToParent(Object parentGuestName)
    method submitFailedWithMsg (line 420) | String submitFailedWithMsg(Object msg)
    method viewMoreReplies (line 510) | String viewMoreReplies(Object moreCount)
  class _PkgL10nDelegate (line 603) | class _PkgL10nDelegate extends LocalizationsDelegate<PkgL10n> {
    method load (line 607) | Future<PkgL10n> load(Locale locale)
    method isSupported (line 612) | bool isSupported(Locale locale)
    method shouldReload (line 615) | bool shouldReload(_PkgL10nDelegate old)
  function lookupPkgL10n (line 618) | PkgL10n lookupPkgL10n(Locale locale)

FILE: modules/tools_system/pkg_player/lib/src/l10n/gen/l10n_en.dart
  class PkgL10nEn (line 6) | class PkgL10nEn extends PkgL10n {
    method monthsAgo (line 10) | String monthsAgo(Object diff)
    method yearsAgo (line 15) | String yearsAgo(Object diff)
    method weeksAgo (line 20) | String weeksAgo(Object diff)
    method daysAgo (line 25) | String daysAgo(Object diff)
    method hoursAgo (line 30) | String hoursAgo(Object diff)
    method minutesAgo (line 35) | String minutesAgo(Object diff)
    method commentsOfPackage (line 40) | String commentsOfPackage(Object packageName)
    method saveFailed (line 72) | String saveFailed(Object error)
    method loadFailedWithMessage (line 110) | String loadFailedWithMessage(Object message)
    method replyToGuest (line 151) | String replyToGuest(Object guestName)
    method replyToParent (line 156) | String replyToParent(Object parentGuestName)
    method submitFailedWithMsg (line 191) | String submitFailedWithMsg(Object msg)
    method viewMoreReplies (line 238) | String viewMoreReplies(Object moreCount)

FILE: modules/tools_system/pkg_player/lib/src/l10n/gen/l10n_zh.dart
  class PkgL10nZh (line 6) | class PkgL10nZh extends PkgL10n {
    method monthsAgo (line 10) | String monthsAgo(Object diff)
    method yearsAgo (line 15) | String yearsAgo(Object diff)
    method weeksAgo (line 20) | String weeksAgo(Object diff)
    method daysAgo (line 25) | String daysAgo(Object diff)
    method hoursAgo (line 30) | String hoursAgo(Object diff)
    method minutesAgo (line 35) | String minutesAgo(Object diff)
    method commentsOfPackage (line 40) | String commentsOfPackage(Object packageName)
    method saveFailed (line 72) | String saveFailed(Object error)
    method loadFailedWithMessage (line 110) | String loadFailedWithMessage(Object message)
    method replyToGuest (line 151) | String replyToGuest(Object guestName)
    method replyToParent (line 156) | String replyToParent(Object parentGuestName)
    method submitFailedWithMsg (line 191) | String submitFailedWithMsg(Object msg)
    method viewMoreReplies (line 238) | String viewMoreReplies(Object moreCount)

FILE: modules/tools_system/pkg_player/lib/src/repository/api/request.dart
  class PackageRequest (line 5) | class PackageRequest with ScienceHostMixin {
    method getAllPackages (line 6) | Future<ApiRet<dynamic>> getAllPackages()
    method insertPackage (line 10) | Future<ApiRet<dynamic>> insertPackage(Map<String, dynamic> data)
    method deletePackages (line 14) | Future<ApiRet<dynamic>> deletePackages(String name)
    method addCategories (line 18) | Future<ApiRet<dynamic>> addCategories({
    method getCategoriesPackage (line 30) | Future<ApiRet<List<PluginModel>>> getCategoriesPackage({
    method addCategoriesRaw (line 46) | Future<ApiRet<dynamic>> addCategoriesRaw(Map<String, dynamic> data)
    method addToCategories (line 50) | Future<ApiRet<dynamic>> addToCategories(
    method getCategories (line 62) | Future<ApiRet<List<Category>>> getCategories()
    method getPackageComments (line 74) | Future<ApiRet<CommentsResponse>> getPackageComments(
    method sendComment (line 87) | Future<ApiRet<dynamic>> sendComment(
    method getCommentReplies (line 101) | Future<Ap
Condensed preview — 1054 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (3,215K chars).
[
  {
    "path": ".gitignore",
    "chars": 710,
    "preview": "# Miscellaneous\n*.class\n*.log\n*.pyc\n*.swp\n.DS_Store\n.atom/\n.buildlog/\n.history\n.svn/\n\n# IntelliJ related\n*.iml\n*.ipr\n*.i"
  },
  {
    "path": ".metadata",
    "chars": 1668,
    "preview": "# This file tracks properties of this Flutter project.\n# Used by Flutter tool to assess capabilities and perform upgrade"
  },
  {
    "path": "LICENSE",
    "chars": 35120,
    "preview": "GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation,"
  },
  {
    "path": "README-EN.md",
    "chars": 10938,
    "preview": "<h1 align=\"center\" style=\"border-bottom: none\">\n    <b>\n        <a href=\"https://github.com/toly1994328/FlutterUnit\">Flu"
  },
  {
    "path": "README.md",
    "chars": 10816,
    "preview": "<h1 align=\"center\" style=\"border-bottom: none\">\n    <b>\n        <a href=\"https://github.com/toly1994328/FlutterUnit\">Flu"
  },
  {
    "path": "analysis_options.yaml",
    "chars": 703,
    "preview": "# This file configures the analyzer, which statically analyzes Dart code to\n# check for errors, warnings, and lints.\n#\n#"
  },
  {
    "path": "android/.gitignore",
    "chars": 285,
    "preview": "gradle-wrapper.jar\n/.gradle\n/captures/\n/gradlew\n/gradlew.bat\n/local.properties\nGeneratedPluginRegistrant.java\n\n# Remembe"
  },
  {
    "path": "android/app/build.gradle.kts",
    "chars": 1893,
    "preview": "plugins {\n    id(\"com.android.application\")\n    id(\"kotlin-android\")\n    // The Flutter Gradle Plugin must be applied af"
  },
  {
    "path": "android/app/proguard-rules.pro",
    "chars": 68,
    "preview": "-dontwarn javax.annotation.**\n-keep class javax.annotation.** { *; }"
  },
  {
    "path": "android/app/src/debug/AndroidManifest.xml",
    "chars": 333,
    "preview": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.toly1994.flutter_unit\">\n    <!-- F"
  },
  {
    "path": "android/app/src/main/AndroidManifest.xml",
    "chars": 2973,
    "preview": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\">\n    <uses-permission android:name=\"android.permiss"
  },
  {
    "path": "android/app/src/main/kotlin/com/toly1994/flutter_unit/MainActivity.kt",
    "chars": 130,
    "preview": "package com.toly1994.flutter_unit\n\nimport io.flutter.embedding.android.FlutterActivity\n\nclass MainActivity: FlutterActiv"
  },
  {
    "path": "android/app/src/main/res/drawable/launch_background.xml",
    "chars": 434,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Modify this file to customize your launch splash screen -->\n<layer-list xmln"
  },
  {
    "path": "android/app/src/main/res/drawable-v21/launch_background.xml",
    "chars": 438,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!-- Modify this file to customize your launch splash screen -->\n<layer-list xmln"
  },
  {
    "path": "android/app/src/main/res/values/styles.xml",
    "chars": 994,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- Theme applied to the Android Window while the process is sta"
  },
  {
    "path": "android/app/src/main/res/values-night/styles.xml",
    "chars": 993,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<resources>\n    <!-- Theme applied to the Android Window while the process is sta"
  },
  {
    "path": "android/app/src/profile/AndroidManifest.xml",
    "chars": 333,
    "preview": "<manifest xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    package=\"com.toly1994.flutter_unit\">\n    <!-- F"
  },
  {
    "path": "android/build/reports/problems/problems-report.html",
    "chars": 136331,
    "preview": "<!DOCTYPE html>\n\n<html lang=\"en\">\n<head>\n    <!-- Required meta tags -->\n    <meta charset=\"utf-8\">\n    <meta name=\"view"
  },
  {
    "path": "android/build.gradle.kts",
    "chars": 515,
    "preview": "allprojects {\n    repositories {\n        google()\n        mavenCentral()\n    }\n}\n\nval newBuildDir: Directory = rootProje"
  },
  {
    "path": "android/gradle/wrapper/gradle-wrapper.properties",
    "chars": 234,
    "preview": "#Fri Jun 23 08:50:38 CEST 2017\ndistributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\nzipStoreBase=GRADLE_USER"
  },
  {
    "path": "android/gradle.properties",
    "chars": 135,
    "preview": "org.gradle.jvmargs=-Xmx4G -XX:MaxMetaspaceSize=2G -XX:+HeapDumpOnOutOfMemoryError\nandroid.useAndroidX=true\nandroid.enabl"
  },
  {
    "path": "android/settings.gradle.kts",
    "chars": 738,
    "preview": "pluginManagement {\n    val flutterSdkPath = run {\n        val properties = java.util.Properties()\n        file(\"local.pr"
  },
  {
    "path": "assets/data/gallery_info.json",
    "chars": 831,
    "preview": "[\n  {\n    \"image\": \"assets/images/anim_draw.webp\",\n    \"name\": \"基础绘制\",\n    \"info\": \"收录一些基础图形绘制案例,这些案例对初涉绘制的编程者会非常友好。通过这些"
  },
  {
    "path": "assets/data/packages/data.json",
    "chars": 55,
    "preview": "[\n  {\n    \"name\": \"crypto\",\n    \"last_update\": ''\n  }\n]"
  },
  {
    "path": "assets/data/web/node.json",
    "chars": 564940,
    "preview": "[{\"id\":null,\"widgetId\":9,\"name\":\"CircleAvatar的表现\",\"priority\":1,\"subtitle\":\"【radius】 : 半径  【double】\\n【backgroundImage】 : "
  },
  {
    "path": "assets/data/web/widget.json",
    "chars": 41117,
    "preview": "[{\"id\":1,\"family\":0,\"name\":\"Container\",\"nameCN\":\"容器组件\",\"lever\":5,\"linkWidget\":\"74,85,80,78,70,123\",\"info\":\"用于容纳单个子组件的容器组"
  },
  {
    "path": "assets/version.json",
    "chars": 20,
    "preview": "{\n  \"dbVersion\": 5\n}"
  },
  {
    "path": "desiredFileName.txt",
    "chars": 2,
    "preview": "{}"
  },
  {
    "path": "devtools_options.yaml",
    "chars": 184,
    "preview": "description: This file stores settings for Dart & Flutter DevTools.\ndocumentation: https://docs.flutter.dev/tools/devtoo"
  },
  {
    "path": "doc/development/architecture.md",
    "chars": 4248,
    "preview": "# FlutterUnit 架构设计文档\n\n## 项目概述\n\nFlutterUnit 是一个全平台的 Flutter 组件展示和学习应用,支持 Android、iOS、Web、Windows、macOS 和 Linux 平台。项目采用模块化"
  },
  {
    "path": "doc/version/3.1.0.md",
    "chars": 116,
    "preview": "桌面版:\nwindows/macos 支持应用内更新,优化更新过程交互\n增加: 知识集锦/布局宝库\n增加 Ctrl+F 全局搜索功能\n\n全端:\n增加收录组件,目前共 354 个\n支持寻路算法演绎\n优化组件详情展示\n支持复制局部代码\n"
  },
  {
    "path": "doc/version/3.2.0.md",
    "chars": 132,
    "preview": "全端:\n增加最新咨询功能\n优化组件列表展示,增加logo设计图\n增加世界留言板\n优化项目结构\n组件数据支持 10 国语言国际化\n\n下载失败,可到下面网站下载最新版\nhttps://gitee.com/toly1994328/FlutterU"
  },
  {
    "path": "ios/.gitignore",
    "chars": 569,
    "preview": "**/dgph\n*.mode1v3\n*.mode2v3\n*.moved-aside\n*.pbxuser\n*.perspectivev3\n**/*sync/\n.sconsign.dblite\n.tags*\n**/.vagrant/\n**/De"
  },
  {
    "path": "ios/Flutter/AppFrameworkInfo.plist",
    "chars": 774,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "ios/Flutter/Debug.xcconfig",
    "chars": 107,
    "preview": "#include? \"Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig\"\n#include \"Generated.xcconfig\"\n"
  },
  {
    "path": "ios/Flutter/Release.xcconfig",
    "chars": 109,
    "preview": "#include? \"Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig\"\n#include \"Generated.xcconfig\"\n"
  },
  {
    "path": "ios/Podfile",
    "chars": 1355,
    "preview": "# Uncomment this line to define a global platform for your project\n# platform :ios, '13.0'\n\n# CocoaPods analytics sends "
  },
  {
    "path": "ios/Runner/AppDelegate.swift",
    "chars": 391,
    "preview": "import UIKit\nimport Flutter\n\n@main\n@objc class AppDelegate: FlutterAppDelegate {\n  override func application(\n    _ appl"
  },
  {
    "path": "ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "chars": 2519,
    "preview": "{\n  \"images\" : [\n    {\n      \"size\" : \"20x20\",\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"Icon-App-20x20@2x.png\",\n   "
  },
  {
    "path": "ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json",
    "chars": 391,
    "preview": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"LaunchImage.png\",\n      \"scale\" : \"1x\"\n    },\n  "
  },
  {
    "path": "ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md",
    "chars": 336,
    "preview": "# Launch Screen Assets\n\nYou can customize the launch screen with your own desired assets by replacing the image files in"
  },
  {
    "path": "ios/Runner/Base.lproj/LaunchScreen.storyboard",
    "chars": 2377,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard"
  },
  {
    "path": "ios/Runner/Base.lproj/Main.storyboard",
    "chars": 1605,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard"
  },
  {
    "path": "ios/Runner/Info.plist",
    "chars": 1913,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "ios/Runner/Runner-Bridging-Header.h",
    "chars": 38,
    "preview": "#import \"GeneratedPluginRegistrant.h\"\n"
  },
  {
    "path": "ios/Runner.xcodeproj/project.pbxproj",
    "chars": 23916,
    "preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 54;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
  },
  {
    "path": "ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "chars": 135,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:\">\n   </FileRef"
  },
  {
    "path": "ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "chars": 238,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings",
    "chars": 226,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme",
    "chars": 3371,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1510\"\n   version = \"1.3\">\n   <BuildAction\n      "
  },
  {
    "path": "ios/Runner.xcworkspace/contents.xcworkspacedata",
    "chars": 224,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:Runner.xcodepr"
  },
  {
    "path": "ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "chars": 238,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings",
    "chars": 226,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "l10n.yaml",
    "chars": 244,
    "preview": "arb-dir: lib/src/l10n/arb\ntemplate-arb-file: app_zh.arb\noutput-localization-file: app_l10n.dart\n\n\nsynthetic-package: fal"
  },
  {
    "path": "lib/main.dart",
    "chars": 108,
    "preview": "import 'src/starter/fx_application.dart';\n\nvoid main(List<String> args) => const FxApplication().run(args);\n"
  },
  {
    "path": "lib/src/flutter_unit.dart",
    "chars": 2972,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter_bloc/flutter_bloc.dart';\n"
  },
  {
    "path": "lib/src/l10n/arb/app_en.arb",
    "chars": 444,
    "preview": "{\n  \"deskTabWidgets\": \"Widgets\",\n  \"deskTabPainter\": \"Painter\",\n  \"deskTabKnowledge\": \"Knowledge\",\n  \"deskTabTools\": \"Tr"
  },
  {
    "path": "lib/src/l10n/arb/app_zh.arb",
    "chars": 383,
    "preview": "{\n  \"deskTabWidgets\": \"组件集录\",\n  \"deskTabPainter\": \"绘制集录\",\n  \"deskTabKnowledge\": \"知识集锦\",\n  \"deskTabTools\": \"工具宝箱\",\n  \"des"
  },
  {
    "path": "lib/src/l10n/gen/app_l10n.dart",
    "chars": 6397,
    "preview": "import 'dart:async';\n\nimport 'package:flutter/foundation.dart';\nimport 'package:flutter/widgets.dart';\nimport 'package:f"
  },
  {
    "path": "lib/src/l10n/gen/app_l10n_en.dart",
    "chars": 1054,
    "preview": "// ignore: unused_import\nimport 'package:intl/intl.dart' as intl;\nimport 'app_l10n.dart';\n\n// ignore_for_file: type=lint"
  },
  {
    "path": "lib/src/l10n/gen/app_l10n_zh.dart",
    "chars": 993,
    "preview": "// ignore: unused_import\nimport 'package:intl/intl.dart' as intl;\nimport 'app_l10n.dart';\n\n// ignore_for_file: type=lint"
  },
  {
    "path": "lib/src/l10n/locale_provider.dart",
    "chars": 175,
    "preview": "import 'package:flutter/material.dart';\n\nmixin LocalProvider {\n  Iterable<LocalizationsDelegate<dynamic>>? get localizat"
  },
  {
    "path": "lib/src/navigation/model/app_tab.dart",
    "chars": 1471,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nimport '"
  },
  {
    "path": "lib/src/navigation/router/app_route.dart",
    "chars": 1301,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter_unit/src/l10n/gen/app_l10"
  },
  {
    "path": "lib/src/navigation/router/system/app.dart",
    "chars": 1260,
    "preview": "import 'package:app/app.dart';\nimport 'package:artifact/artifact.dart';\nimport 'package:authentication/authentication.da"
  },
  {
    "path": "lib/src/navigation/router/system/global.dart",
    "chars": 534,
    "preview": "import 'package:app/app.dart';\nimport '../../../starter/fx_application.dart';\n\nList<GoRoute> get globalRoutes => [\n     "
  },
  {
    "path": "lib/src/navigation/router/system/settings.dart",
    "chars": 815,
    "preview": "import 'package:app/app.dart';\n\nGoRoute get settingsRoute => GoRoute(\n      path: AppRoute.settings.path,\n      builder:"
  },
  {
    "path": "lib/src/navigation/router/widgets/collection_route.dart",
    "chars": 1045,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:widget_module/widget_module.dart'"
  },
  {
    "path": "lib/src/navigation/router/widgets/widgets_route.dart",
    "chars": 1040,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:widget_module/widget_module.dart'"
  },
  {
    "path": "lib/src/navigation/view/app_bloc_provider.dart",
    "chars": 1564,
    "preview": "import 'package:app/app.dart';\nimport 'package:fx_updater/fx_updater.dart';\nimport 'package:note/note.dart';\nimport 'pac"
  },
  {
    "path": "lib/src/navigation/view/desktop/flutter_unit_desk_navigation.dart",
    "chars": 2185,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter_unit/src/l10n/gen/app_l10"
  },
  {
    "path": "lib/src/navigation/view/desktop/locale_change_menu.dart",
    "chars": 2044,
    "preview": "import 'package:flutter/material.dart';\nimport 'package:flutter_bloc/flutter_bloc.dart';\nimport 'package:l10n/l10n.dart'"
  },
  {
    "path": "lib/src/navigation/view/desktop/menu_bar_leading.dart",
    "chars": 2433,
    "preview": "// Copyright 2014 The 张风捷特烈 . All rights reserved.\n// Use of this source code is governed by a BSD-style license that ca"
  },
  {
    "path": "lib/src/navigation/view/desktop/menu_bar_tail.dart",
    "chars": 2399,
    "preview": "// Copyright 2014 The 张风捷特烈 . All rights reserved.\n// Use of this source code is governed by a BSD-style license that ca"
  },
  {
    "path": "lib/src/navigation/view/desktop/theme_model_switch_icon.dart",
    "chars": 803,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter_bloc/flutter_bloc.dart';\n"
  },
  {
    "path": "lib/src/navigation/view/desktop/toly_unit_menu_cell.dart",
    "chars": 2526,
    "preview": "// Copyright 2014 The 张风捷特烈 . All rights reserved.\n// Use of this source code is governed by a BSD-style license that ca"
  },
  {
    "path": "lib/src/navigation/view/desktop/unit_shortcuts_scope.dart",
    "chars": 1326,
    "preview": "import 'package:flutter/material.dart';\nimport 'package:flutter/services.dart';\nimport 'package:fx_trace/fx_trace.dart';"
  },
  {
    "path": "lib/src/navigation/view/mobile/carousel.dart",
    "chars": 6471,
    "preview": "import 'package:flutter/gestures.dart';\nimport 'package:flutter/material.dart';\nimport 'package:app/app.dart';\nimport 'n"
  },
  {
    "path": "lib/src/navigation/view/mobile/news.dart",
    "chars": 4586,
    "preview": "import 'package:flutter/material.dart';\nimport 'package:flutter_bloc/flutter_bloc.dart';\nimport 'package:note/note.dart'"
  },
  {
    "path": "lib/src/navigation/view/mobile/pure_bottom_bar.dart",
    "chars": 1311,
    "preview": "import 'package:flutter/material.dart';\n\nimport '../../../l10n/gen/app_l10n.dart';\nimport '../../model/app_tab.dart';\n\nc"
  },
  {
    "path": "lib/src/navigation/view/mobile/unit_navigation.dart",
    "chars": 2851,
    "preview": "import 'dart:io';\n\nimport 'package:algorithm/algorithm.dart';\nimport 'package:app/app.dart';\nimport 'package:artifact/ar"
  },
  {
    "path": "lib/src/starter/bridge/unit_bridge.dart",
    "chars": 250,
    "preview": "import 'package:fx_dio/fx_dio.dart';\nimport 'package:fx_dio/src/client/host.dart';\nimport 'package:note/note.dart';\nimpo"
  },
  {
    "path": "lib/src/starter/fx_application.dart",
    "chars": 1734,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter_bloc/flutter_bloc.dart';\n"
  },
  {
    "path": "lib/src/starter/start_repository.dart",
    "chars": 3573,
    "preview": "import 'dart:convert';\nimport 'dart:io';\nimport 'package:note/note.dart';\nimport 'package:app/app.dart';\nimport 'package"
  },
  {
    "path": "lib/src/starter/view/error/app_start_error.dart",
    "chars": 1325,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:tolyui/basic/basic.dart';\n\nclass "
  },
  {
    "path": "lib/src/starter/view/splash/Flutter_unit_splash.dart",
    "chars": 4320,
    "preview": "import 'dart:math';\n\nimport 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter/serv"
  },
  {
    "path": "lib/src/starter/view/splash/flutter_unit_text.dart",
    "chars": 3190,
    "preview": "import 'dart:math';\n\nimport 'package:flutter/foundation.dart';\nimport 'package:flutter/material.dart';\n\nclass FlutterUni"
  },
  {
    "path": "linux/.gitignore",
    "chars": 18,
    "preview": "flutter/ephemeral\n"
  },
  {
    "path": "linux/CMakeLists.txt",
    "chars": 5193,
    "preview": "# Project-level configuration.\ncmake_minimum_required(VERSION 3.10)\nproject(runner LANGUAGES CXX)\n\n# The name of the exe"
  },
  {
    "path": "linux/flutter/CMakeLists.txt",
    "chars": 2815,
    "preview": "# This file controls Flutter-level build steps. It should not be edited.\ncmake_minimum_required(VERSION 3.10)\n\nset(EPHEM"
  },
  {
    "path": "linux/flutter/generated_plugin_registrant.cc",
    "chars": 1287,
    "preview": "//\n//  Generated file. Do not edit.\n//\n\n// clang-format off\n\n#include \"generated_plugin_registrant.h\"\n\n#include <open_fi"
  },
  {
    "path": "linux/flutter/generated_plugin_registrant.h",
    "chars": 303,
    "preview": "//\n//  Generated file. Do not edit.\n//\n\n// clang-format off\n\n#ifndef GENERATED_PLUGIN_REGISTRANT_\n#define GENERATED_PLUG"
  },
  {
    "path": "linux/flutter/generated_plugins.cmake",
    "chars": 820,
    "preview": "#\n# Generated file, do not edit.\n#\n\nlist(APPEND FLUTTER_PLUGIN_LIST\n  open_file_linux\n  screen_retriever_linux\n  url_lau"
  },
  {
    "path": "linux/main.cc",
    "chars": 180,
    "preview": "#include \"my_application.h\"\n\nint main(int argc, char** argv) {\n  g_autoptr(MyApplication) app = my_application_new();\n  "
  },
  {
    "path": "linux/my_application.cc",
    "chars": 3722,
    "preview": "#include \"my_application.h\"\n\n#include <flutter_linux/flutter_linux.h>\n#ifdef GDK_WINDOWING_X11\n#include <gdk/gdkx.h>\n#en"
  },
  {
    "path": "linux/my_application.h",
    "chars": 388,
    "preview": "#ifndef FLUTTER_MY_APPLICATION_H_\n#define FLUTTER_MY_APPLICATION_H_\n\n#include <gtk/gtk.h>\n\nG_DECLARE_FINAL_TYPE(MyApplic"
  },
  {
    "path": "macos/.gitignore",
    "chars": 89,
    "preview": "# Flutter-related\n**/Flutter/ephemeral/\n**/Pods/\n\n# Xcode-related\n**/dgph\n**/xcuserdata/\n"
  },
  {
    "path": "macos/Flutter/Flutter-Debug.xcconfig",
    "chars": 125,
    "preview": "#include? \"Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig\"\n#include \"ephemeral/Flutter-Generated.xccon"
  },
  {
    "path": "macos/Flutter/Flutter-Release.xcconfig",
    "chars": 127,
    "preview": "#include? \"Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig\"\n#include \"ephemeral/Flutter-Generated.xcc"
  },
  {
    "path": "macos/Flutter/GeneratedPluginRegistrant.swift",
    "chars": 1435,
    "preview": "//\n//  Generated file. Do not edit.\n//\n\nimport FlutterMacOS\nimport Foundation\n\nimport file_picker\nimport open_file_mac\ni"
  },
  {
    "path": "macos/Podfile",
    "chars": 1330,
    "preview": "platform :osx, '10.15'\n\n# CocoaPods analytics sends network stats synchronously affecting flutter build latency.\nENV['CO"
  },
  {
    "path": "macos/Runner/AppDelegate.swift",
    "chars": 311,
    "preview": "import Cocoa\nimport FlutterMacOS\n\n@main\nclass AppDelegate: FlutterAppDelegate {\n  override func applicationShouldTermina"
  },
  {
    "path": "macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "chars": 1291,
    "preview": "{\n  \"images\" : [\n    {\n      \"size\" : \"16x16\",\n      \"idiom\" : \"mac\",\n      \"filename\" : \"app_icon_16.png\",\n      \"scale"
  },
  {
    "path": "macos/Runner/Base.lproj/MainMenu.xib",
    "chars": 23723,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.Cocoa.XIB\" version=\"3.0\" toolsVersion"
  },
  {
    "path": "macos/Runner/Configs/AppInfo.xcconfig",
    "chars": 611,
    "preview": "// Application-level settings for the Runner target.\n//\n// This may be replaced with something auto-generated from metad"
  },
  {
    "path": "macos/Runner/Configs/Debug.xcconfig",
    "chars": 77,
    "preview": "#include \"../../Flutter/Flutter-Debug.xcconfig\"\n#include \"Warnings.xcconfig\"\n"
  },
  {
    "path": "macos/Runner/Configs/Release.xcconfig",
    "chars": 79,
    "preview": "#include \"../../Flutter/Flutter-Release.xcconfig\"\n#include \"Warnings.xcconfig\"\n"
  },
  {
    "path": "macos/Runner/Configs/Warnings.xcconfig",
    "chars": 580,
    "preview": "WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverl"
  },
  {
    "path": "macos/Runner/DebugProfile.entitlements",
    "chars": 530,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "macos/Runner/Info.plist",
    "chars": 1060,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "macos/Runner/MainFlutterWindow.swift",
    "chars": 585,
    "preview": "import Cocoa\nimport FlutterMacOS\nimport window_manager\n\nclass MainFlutterWindow: NSWindow {\n  override func awakeFromNib"
  },
  {
    "path": "macos/Runner/Release.entitlements",
    "chars": 530,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "macos/Runner.xcodeproj/project.pbxproj",
    "chars": 25270,
    "preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 54;\n\tobjects = {\n\n/* Begin PBXAggregateTarget sec"
  },
  {
    "path": "macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "chars": 238,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme",
    "chars": 3245,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1510\"\n   version = \"1.3\">\n   <BuildAction\n      "
  },
  {
    "path": "macos/Runner.xcworkspace/contents.xcworkspacedata",
    "chars": 224,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:Runner.xcodepr"
  },
  {
    "path": "macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "chars": 238,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "modules/basic_system/app/.gitignore",
    "chars": 541,
    "preview": "# Miscellaneous\n*.class\n*.log\n*.pyc\n*.swp\n.DS_Store\n.atom/\n.buildlog/\n.history\n.svn/\nmigrate_working_dir/\n\n# IntelliJ re"
  },
  {
    "path": "modules/basic_system/app/.metadata",
    "chars": 309,
    "preview": "# This file tracks properties of this Flutter project.\n# Used by Flutter tool to assess capabilities and perform upgrade"
  },
  {
    "path": "modules/basic_system/app/CHANGELOG.md",
    "chars": 44,
    "preview": "## 0.0.1\n\n* TODO: Describe initial release.\n"
  },
  {
    "path": "modules/basic_system/app/LICENSE",
    "chars": 29,
    "preview": "TODO: Add your license here.\n"
  },
  {
    "path": "modules/basic_system/app/README.md",
    "chars": 1273,
    "preview": "<!--\nThis README describes the package. If you publish this package to pub.dev,\nthis README's contents appear on the lan"
  },
  {
    "path": "modules/basic_system/app/analysis_options.yaml",
    "chars": 154,
    "preview": "include: package:flutter_lints/flutter.yaml\n\n# Additional information about this file can be found at\n# https://dart.dev"
  },
  {
    "path": "modules/basic_system/app/lib/app/action/action.dart",
    "chars": 18,
    "preview": "export 'url.dart';"
  },
  {
    "path": "modules/basic_system/app/lib/app/action/url.dart",
    "chars": 453,
    "preview": "// Copyright 2014 The 张风捷特烈 . All rights reserved.\n\n// Author:      张风捷特烈\n// CreateTime:  2024-07-07\n// Contact Me:  198"
  },
  {
    "path": "modules/basic_system/app/lib/app/cons/cons.dart",
    "chars": 2601,
    "preview": "\nimport 'package:flutter/material.dart';\nimport 'package:l10n/l10n.dart';\nimport 'package:toly_ui/toly_ui.dart';\nimport "
  },
  {
    "path": "modules/basic_system/app/lib/app/cons/global_value.dart",
    "chars": 1091,
    "preview": "import 'dart:io';\nimport 'dart:ui';\nimport 'package:storage/storage.dart';\nimport 'package:flutter/foundation.dart';\nimp"
  },
  {
    "path": "modules/basic_system/app/lib/app/cons/path_unit.dart",
    "chars": 427,
    "preview": "/// create by 张风捷特烈 on 2021/1/17\n/// contact me by email 1981462002@qq.com\n/// 说明:\n\nclass PathUnit {\n  static const base"
  },
  {
    "path": "modules/basic_system/app/lib/app/cons/sp.dart",
    "chars": 636,
    "preview": "/// create by 张风捷特烈 on 2020-04-10\n/// contact me by email 1981462002@qq.com\n/// 说明: \n\nclass SpKey{\n  SpKey._();\n\n  stati"
  },
  {
    "path": "modules/basic_system/app/lib/app/cons/str_unit.dart",
    "chars": 1094,
    "preview": "import 'package:flutter/cupertino.dart';\nimport 'package:l10n/l10n.dart';\n\n/// create by 张风捷特烈 on 2020/11/29\n/// contact"
  },
  {
    "path": "modules/basic_system/app/lib/app/res/toly_icon.dart",
    "chars": 2872,
    "preview": "import 'package:flutter/widgets.dart';\n// Power By 张风捷特烈--- Generated file. Do not edit.\n// 欢迎支持: https://github.com/tol"
  },
  {
    "path": "modules/basic_system/app/lib/app/router/app_route.dart",
    "chars": 1302,
    "preview": "enum AppRoute {\n  home('/', url: '/'),\n  splash('splash', url: '/splash'),\n  startError('start_error', url: '/start_erro"
  },
  {
    "path": "modules/basic_system/app/lib/app/style/behavior/no_scroll_behavior.dart",
    "chars": 301,
    "preview": "import 'package:flutter/material.dart';\n\n/// create by 张风捷特烈 on 2020/6/16\n/// contact me by email 1981462002@qq.com\n/// "
  },
  {
    "path": "modules/basic_system/app/lib/app/style/gap.dart",
    "chars": 377,
    "preview": "// ignore_for_file: constant_identifier_names\n\nimport 'package:flutter/material.dart';\n\nimport 'unit_color.dart';\n\nclass"
  },
  {
    "path": "modules/basic_system/app/lib/app/style/shape/coupon_shape_border.dart",
    "chars": 3464,
    "preview": "import 'dart:math';\n\nimport 'package:flutter/material.dart';\n\n/// create by 张风捷特烈 on 2020-03-06\n/// contact me by email "
  },
  {
    "path": "modules/basic_system/app/lib/app/style/shape/techno_shape.dart",
    "chars": 2405,
    "preview": "import 'package:flutter/material.dart';\n\n/// create by 张风捷特烈 on 2020-03-06\n/// contact me by email 1981462002@qq.com\n///"
  },
  {
    "path": "modules/basic_system/app/lib/app/style/unit_color.dart",
    "chars": 982,
    "preview": "import 'package:flutter/material.dart';\n\n/// create by 张风捷特烈 on 2020-04-19\n/// contact me by email 1981462002@qq.com\n///"
  },
  {
    "path": "modules/basic_system/app/lib/app/style/unit_text_style.dart",
    "chars": 1548,
    "preview": "import 'package:flutter/material.dart';\n\nimport '../theme/size_unit.dart';\nimport 'unit_color.dart';\n\n///文本样式\nclass Unit"
  },
  {
    "path": "modules/basic_system/app/lib/app/theme/app_theme.dart",
    "chars": 4589,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter/services.dart';\n\nThemeDat"
  },
  {
    "path": "modules/basic_system/app/lib/app/theme/size_unit.dart",
    "chars": 797,
    "preview": "/// create by 张风捷特烈 on 2020/11/17\n/// contact me by email 1981462002@qq.com\n/// 说明:\n\n// ignore_for_file: constant_identi"
  },
  {
    "path": "modules/basic_system/app/lib/app.dart",
    "chars": 979,
    "preview": "library app;\n\nexport 'app_config/bloc/bloc.dart';\nexport 'app_config/repository/repository.dart';\nexport 'app/cons/cons."
  },
  {
    "path": "modules/basic_system/app/lib/app_config/app_config.dart",
    "chars": 87,
    "preview": "export 'bloc/state.dart';\nexport 'bloc/bloc.dart';\nexport 'repository/repository.dart';"
  },
  {
    "path": "modules/basic_system/app/lib/app_config/bloc/bloc.dart",
    "chars": 2456,
    "preview": "import 'dart:async';\n\nimport 'package:app/app.dart';\n// import 'package:connectivity_plus/connectivity_plus.dart';\nimpor"
  },
  {
    "path": "modules/basic_system/app/lib/app_config/bloc/state.dart",
    "chars": 4141,
    "preview": "import 'dart:io';\n\nimport 'package:app/app.dart';\nimport 'package:app/app/cons/cons.dart';\n// import 'package:connectivi"
  },
  {
    "path": "modules/basic_system/app/lib/app_config/repository/repository.dart",
    "chars": 1,
    "preview": "\n"
  },
  {
    "path": "modules/basic_system/app/lib/event/api.dart",
    "chars": 344,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/foundation.dart';\nimport 'package:fx_dio/fx_dio.dart';\n\nvoid send"
  },
  {
    "path": "modules/basic_system/app/lib/http/flutter_unit/api/upgrade_api.dart",
    "chars": 561,
    "preview": "import 'dart:async';\nimport 'package:fx_dio/fx_dio.dart';\nimport 'package:app/app.dart';\nimport 'package:fx_updater/fx_u"
  },
  {
    "path": "modules/basic_system/app/lib/http/flutter_unit/unit_host.dart",
    "chars": 687,
    "preview": "import 'package:fx_dio/fx_dio.dart';\n\nclass UnitHost extends Host {\n  const UnitHost();\n\n  @override\n  Map<HostEnv, Stri"
  },
  {
    "path": "modules/basic_system/app/lib/http/http.dart",
    "chars": 189,
    "preview": "export 'flutter_unit/api/upgrade_api.dart';\nexport 'flutter_unit/unit_host.dart';\nexport 'science/science_host.dart';\nex"
  },
  {
    "path": "modules/basic_system/app/lib/http/register.dart",
    "chars": 839,
    "preview": "import 'dart:async';\n\nimport 'package:app/app.dart';\nimport 'package:fx_dio/fx_dio.dart';\nimport 'package:unit_env/unit_"
  },
  {
    "path": "modules/basic_system/app/lib/http/science/science_host.dart",
    "chars": 667,
    "preview": "import 'package:flutter/foundation.dart';\nimport 'package:fx_dio/fx_dio.dart';\n\nclass ScienceHost extends Host {\n  const"
  },
  {
    "path": "modules/basic_system/app/lib/http/science/science_rep_interceptor.dart",
    "chars": 1107,
    "preview": "import 'package:dio/dio.dart';\nimport 'package:fx_trace/fx_trace.dart';\n\nclass ScienceRepInterceptor extends Interceptor"
  },
  {
    "path": "modules/basic_system/app/lib/news/cacheable.dart",
    "chars": 1850,
    "preview": "import 'dart:async';\nimport 'dart:convert';\nimport 'package:storage/storage.dart';\nimport 'package:fx_dao/fx_dao.dart';\n"
  },
  {
    "path": "modules/basic_system/app/lib/news/news_bloc.dart",
    "chars": 1371,
    "preview": "// import 'package:flutter_bloc/flutter_bloc.dart';\n// import 'package:fx_dao/src/model/po.dart';\n// import 'package:fx_"
  },
  {
    "path": "modules/basic_system/app/lib/view/about/about_app_page.dart",
    "chars": 7037,
    "preview": "/// create by 张风捷特烈 on 2020-04-13\n/// contact me by email 1981462002@qq.com\n/// 说明: ...\nimport 'package:app/app.dart';\ni"
  },
  {
    "path": "modules/basic_system/app/lib/view/about/about_me_page.dart",
    "chars": 5181,
    "preview": "/// create by 张风捷特烈 on 2020-04-13\n/// contact me by email 1981462002@qq.com\n/// 说明: ...\nimport 'package:app/app.dart';\ni"
  },
  {
    "path": "modules/basic_system/app/lib/view/about/version_info.dart",
    "chars": 3976,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:fx_updater/fx_updater.dart';\nimpo"
  },
  {
    "path": "modules/basic_system/app/lib/view/account/desk/desk_account_page.dart",
    "chars": 3227,
    "preview": "import 'package:components/components.dart';\nimport 'package:flutter/material.dart';\nimport 'package:l10n/l10n.dart';\nim"
  },
  {
    "path": "modules/basic_system/app/lib/view/account/desk/sliver_cellection_panel.dart",
    "chars": 1986,
    "preview": "import 'package:flutter/material.dart';\n\nimport '../../about/about_app_page.dart';\n\nclass SliverCollectionPanel extends "
  },
  {
    "path": "modules/basic_system/app/lib/view/account/desk/sliver_list_panel.dart",
    "chars": 2821,
    "preview": "import 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter/widgets.dart';\n"
  },
  {
    "path": "modules/basic_system/app/lib/view/account/desk/sliver_share_panel.dart",
    "chars": 1856,
    "preview": "import 'package:flutter/material.dart';\n\nclass SliverSharePanel extends StatelessWidget {\n  const SliverSharePanel({supe"
  },
  {
    "path": "modules/basic_system/app/lib/view/account/desk/user_header.dart",
    "chars": 2076,
    "preview": "import 'package:flutter/material.dart';\nimport 'package:toly_ui/toly_ui.dart';\n\nclass UserHeader extends StatelessWidget"
  },
  {
    "path": "modules/basic_system/app/lib/view/data_manage/data_manage_page.dart",
    "chars": 5097,
    "preview": "import 'dart:convert';\nimport 'dart:io';\nimport 'package:app/app.dart';\nimport 'package:l10n/l10n.dart';\nimport 'package"
  },
  {
    "path": "modules/basic_system/app/lib/view/setting/app_style_setting.dart",
    "chars": 2189,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nimport '"
  },
  {
    "path": "modules/basic_system/app/lib/view/setting/code_style_setting.dart",
    "chars": 2346,
    "preview": "import 'package:app/app.dart';\nimport 'package:l10n/l10n.dart';\nimport 'package:toly_ui/toly_ui.dart';\nimport 'package:f"
  },
  {
    "path": "modules/basic_system/app/lib/view/setting/font_setting.dart",
    "chars": 3148,
    "preview": "import 'package:app/app.dart';\nimport 'package:toly_ui/toly_ui.dart';\nimport 'package:flutter/material.dart';\nimport 'pa"
  },
  {
    "path": "modules/basic_system/app/lib/view/setting/item_style_setting.dart",
    "chars": 2126,
    "preview": "// import 'package:app/app.dart';\n// import 'package:components/components.dart';\n// import 'package:flutter/material.da"
  },
  {
    "path": "modules/basic_system/app/lib/view/setting/language_setting.dart",
    "chars": 2204,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter_bloc/flutter_bloc.dart';\n"
  },
  {
    "path": "modules/basic_system/app/lib/view/setting/setting_page.dart",
    "chars": 6099,
    "preview": "import 'package:app/app.dart';\nimport 'package:fx_updater/fx_updater.dart';\nimport 'package:go_router/go_router.dart';\ni"
  },
  {
    "path": "modules/basic_system/app/lib/view/setting/theme_color_setting.dart",
    "chars": 3654,
    "preview": "import 'package:app/app.dart';\nimport 'package:components/components.dart';\nimport 'package:flutter/material.dart';\nimpo"
  },
  {
    "path": "modules/basic_system/app/lib/view/setting/theme_model_setting.dart",
    "chars": 2527,
    "preview": "import 'package:app/app.dart';\nimport 'package:l10n/l10n.dart';\nimport 'package:toly_ui/toly_ui.dart';\nimport 'package:f"
  },
  {
    "path": "modules/basic_system/app/lib/view/unit_todo/attr_unit_page.dart",
    "chars": 2706,
    "preview": "import 'package:toly_ui/toly_ui.dart';\nimport 'package:flutter/material.dart';\n\nclass AttrUnitPage extends StatelessWidg"
  },
  {
    "path": "modules/basic_system/app/lib/view/unit_todo/layout_unit_page.dart",
    "chars": 3139,
    "preview": "\n\nimport 'package:toly_ui/toly_ui.dart';\nimport 'package:flutter/material.dart';\n\n\nclass LayoutUnitPage extends Stateles"
  },
  {
    "path": "modules/basic_system/app/lib/view/unit_todo/paint_unit_page.dart",
    "chars": 3144,
    "preview": "import 'package:toly_ui/toly_ui.dart';\nimport 'package:flutter/material.dart';\n\n\nclass PaintUnitPage extends StatelessWi"
  },
  {
    "path": "modules/basic_system/app/lib/view/unit_todo/point_unit_page.dart",
    "chars": 3356,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/material.dart';\nimport 'package:toly_ui/toly_ui.dart';\n\nclass Bug"
  },
  {
    "path": "modules/basic_system/app/lib/view/view.dart",
    "chars": 517,
    "preview": "export 'about/about_app_page.dart';\nexport 'about/about_me_page.dart';\nexport 'about/version_info.dart';\nexport 'account"
  },
  {
    "path": "modules/basic_system/app/lib/view/wrapper/overlay_tool_wrapper.dart",
    "chars": 6647,
    "preview": "import 'package:app/app.dart';\nimport 'package:toly_ui/toly_ui.dart';\nimport 'package:flutter/material.dart';\n\n/// creat"
  },
  {
    "path": "modules/basic_system/app/pubspec.yaml",
    "chars": 1387,
    "preview": "name: app\ndescription: A new Flutter package project.\nversion: 0.0.1\nhomepage:\npublish_to: none\n\nenvironment:\n  sdk: \">="
  },
  {
    "path": "modules/basic_system/app/test/app_config_test.dart",
    "chars": 342,
    "preview": "// import 'package:flutter_test/flutter_test.dart';\n//\n// import 'package:app_config/app_config.dart';\n//\n// void main()"
  },
  {
    "path": "modules/basic_system/authentication/.gitignore",
    "chars": 541,
    "preview": "# Miscellaneous\n*.class\n*.log\n*.pyc\n*.swp\n.DS_Store\n.atom/\n.buildlog/\n.history\n.svn/\nmigrate_working_dir/\n\n# IntelliJ re"
  },
  {
    "path": "modules/basic_system/authentication/.metadata",
    "chars": 309,
    "preview": "# This file tracks properties of this Flutter project.\n# Used by Flutter tool to assess capabilities and perform upgrade"
  },
  {
    "path": "modules/basic_system/authentication/CHANGELOG.md",
    "chars": 44,
    "preview": "## 0.0.1\n\n* TODO: Describe initial release.\n"
  },
  {
    "path": "modules/basic_system/authentication/LICENSE",
    "chars": 29,
    "preview": "TODO: Add your license here.\n"
  },
  {
    "path": "modules/basic_system/authentication/README.md",
    "chars": 1273,
    "preview": "<!--\nThis README describes the package. If you publish this package to pub.dev,\nthis README's contents appear on the lan"
  },
  {
    "path": "modules/basic_system/authentication/analysis_options.yaml",
    "chars": 154,
    "preview": "include: package:flutter_lints/flutter.yaml\n\n# Additional information about this file can be found at\n# https://dart.dev"
  },
  {
    "path": "modules/basic_system/authentication/lib/authentication.dart",
    "chars": 676,
    "preview": "library authentication;\n\nexport 'repository/auth_repository.dart';\nexport 'repository/impl/http_auth_repository.dart';\ne"
  },
  {
    "path": "modules/basic_system/authentication/lib/blocs/authentic/bloc.dart",
    "chars": 3286,
    "preview": "import 'dart:async';\nimport 'dart:convert';\n\nimport 'package:app/app.dart';\nimport 'package:authentication/authenticatio"
  },
  {
    "path": "modules/basic_system/authentication/lib/blocs/authentic/event.dart",
    "chars": 903,
    "preview": "import 'package:equatable/equatable.dart';\n\n///********************************验证行为********************************\n\nabs"
  },
  {
    "path": "modules/basic_system/authentication/lib/blocs/authentic/state.dart",
    "chars": 877,
    "preview": "\nimport 'package:authentication/models/user.dart';\nimport 'package:equatable/equatable.dart';\n\nenum AuthType{\n  login,\n "
  },
  {
    "path": "modules/basic_system/authentication/lib/blocs/register/bloc.dart",
    "chars": 1123,
    "preview": "// import 'package:authentication/authentication.dart';\n// import 'package:flutter_bloc/flutter_bloc.dart';\n// import 'p"
  },
  {
    "path": "modules/basic_system/authentication/lib/blocs/register/event.dart",
    "chars": 447,
    "preview": "// import 'package:equatable/equatable.dart';\n//\n// /// create by 张风捷特烈 on 2020-03-03\n// /// contact me by email 1981462"
  },
  {
    "path": "modules/basic_system/authentication/lib/blocs/register/state.dart",
    "chars": 991,
    "preview": "// import 'package:equatable/equatable.dart';\n//\n// /// create by 张风捷特烈 on 2020-03-03\n// /// contact me by email 1981462"
  },
  {
    "path": "modules/basic_system/authentication/lib/blocs/user/bloc.dart",
    "chars": 174,
    "preview": "import 'package:flutter_bloc/flutter_bloc.dart';\n\nimport 'state.dart';\n\nclass UserBloc extends Cubit<UserPerformance> {\n"
  },
  {
    "path": "modules/basic_system/authentication/lib/blocs/user/state.dart",
    "chars": 1960,
    "preview": "\n\nclass UserPerformance {\n  final String username;\n  final int userId;\n  final String phone;\n  final String email;\n  fin"
  },
  {
    "path": "modules/basic_system/authentication/lib/models/user.dart",
    "chars": 1254,
    "preview": "import 'package:equatable/equatable.dart';\n\n/// create by 张风捷特烈 on 2021/1/17\n/// contact me by email 1981462002@qq.com\n/"
  },
  {
    "path": "modules/basic_system/authentication/lib/repository/auth_repository.dart",
    "chars": 424,
    "preview": "import 'package:utils/utils.dart';\n\nimport '../models/user.dart';\n\nabstract class AuthRepository {\n\n  // 用户登录接口\n  Future"
  },
  {
    "path": "modules/basic_system/authentication/lib/repository/impl/http_auth_repository.dart",
    "chars": 2178,
    "preview": "import 'package:authentication/models/user.dart';\n\nimport 'package:utils/src/http_utils/task_result.dart';\nimport 'packa"
  },
  {
    "path": "modules/basic_system/authentication/lib/views/authentic_widget.dart",
    "chars": 797,
    "preview": "import 'package:flutter/material.dart';\nimport 'package:flutter_bloc/flutter_bloc.dart';\n\nimport '../authentication.dart"
  },
  {
    "path": "modules/basic_system/authentication/lib/views/mobile/login/login_form.dart",
    "chars": 8308,
    "preview": "import 'package:app/app.dart';\nimport 'package:flutter/cupertino.dart';\nimport 'package:flutter/material.dart';\nimport '"
  },
  {
    "path": "modules/basic_system/authentication/lib/views/mobile/login/login_page.dart",
    "chars": 1591,
    "preview": "import 'package:authentication/authentication.dart';\nimport 'package:flutter/material.dart';\nimport 'package:flutter_blo"
  }
]

// ... and 854 more files (download for full content)

About this extraction

This page contains the full source code of the toly1994328/FlutterUnit GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1054 files (2.8 MB), approximately 814.2k tokens, and a symbol index with 3198 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!