├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── README_CN.md ├── docs └── INTEGRATION.md ├── tools_plugin ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android │ ├── .gitignore │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── settings.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── kwai │ │ │ └── flutter │ │ │ └── debugtools │ │ │ ├── ScreenPreviewPlugin.java │ │ │ └── screen │ │ │ ├── FpsHelper.java │ │ │ ├── FrameInfo.java │ │ │ ├── ScreenCaptureService.java │ │ │ ├── ScreenPreviewRecorder.java │ │ │ └── ScreenPreviewSender.java │ │ └── kotlin │ │ └── com │ │ └── kwai │ │ └── flutter │ │ └── debugtools │ │ └── DebugtoolsPlugin.kt ├── example │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── kwai │ │ │ │ │ │ └── flutter │ │ │ │ │ │ └── debugtools_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── .last_build_id │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── demo_serv_config.dart │ │ └── main.dart │ └── pubspec.yaml ├── ios │ ├── .gitignore │ ├── Assets │ │ └── .gitkeep │ ├── Classes │ │ ├── DebugtoolsPlugin.h │ │ └── DebugtoolsPlugin.m │ └── k_debug_tools.podspec ├── lib │ ├── k_debug_tools.dart │ └── src │ │ ├── appinfo │ │ └── app_info.dart │ │ ├── dbview │ │ ├── db_controller.dart │ │ ├── db_view_controller.dart │ │ └── db_view_models.dart │ │ ├── debugger.dart │ │ ├── deviceinfo │ │ └── device_info.dart │ │ ├── fileexplorer │ │ ├── file_explorer.dart │ │ └── file_explorer_models.dart │ │ ├── http │ │ ├── http_client_wrapper.dart │ │ ├── http_float_button.dart │ │ ├── http_models.dart │ │ ├── http_request_wrapper.dart │ │ ├── http_response_wrapper.dart │ │ ├── httparchive │ │ │ ├── http_archive_detail_page.dart │ │ │ ├── http_archive_list_page.dart │ │ │ ├── http_request_widget.dart │ │ │ ├── http_response_widget.dart │ │ │ └── json_view.dart │ │ ├── httphook │ │ │ ├── config_models.dart │ │ │ ├── config_provider.dart │ │ │ ├── http_hook.dart │ │ │ ├── http_hook_controller.dart │ │ │ ├── http_hook_local_service.dart │ │ │ └── http_throttle_controller.dart │ │ └── network_debugger.dart │ │ ├── logwatcher │ │ ├── log_models.dart │ │ └── log_watcher_controller.dart │ │ ├── model │ │ ├── base_model.dart │ │ ├── localization_options.dart │ │ ├── photo_models.dart │ │ └── web_socket_models.dart │ │ ├── navigator │ │ └── navigator_models.dart │ │ ├── register.dart │ │ ├── serverconfig │ │ ├── server_config.dart │ │ └── server_config_models.dart │ │ ├── uicheck │ │ └── uicheck_models.dart │ │ ├── webserver │ │ ├── handler_def.dart │ │ ├── handlers │ │ │ ├── app_info_handler.dart │ │ │ ├── clip_board_handler.dart │ │ │ ├── db_view_handler.dart │ │ │ ├── device_info_handler.dart │ │ │ ├── file_handler.dart │ │ │ ├── httphook_handler.dart │ │ │ ├── logwatcher_handler.dart │ │ │ ├── navigator_handler.dart │ │ │ ├── photo_handler.dart │ │ │ ├── pin_handler.dart │ │ │ ├── screen_recorder_handler.dart │ │ │ ├── sp_handler.dart │ │ │ ├── static_handler.dart │ │ │ ├── ui_check_handler.dart │ │ │ └── ws_handler.dart │ │ └── web_server.dart │ │ └── widgets │ │ ├── common_widgets.dart │ │ ├── dialog.dart │ │ ├── floating_button.dart │ │ ├── list_widgets.dart │ │ ├── main_dialog.dart │ │ ├── progress_dialog.dart │ │ ├── toast.dart │ │ └── transparent_route.dart └── pubspec.yaml └── tools_web ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── l10n.yaml ├── lib ├── l10n │ ├── app_en.arb │ └── app_zh.arb ├── main.dart └── src │ ├── app │ ├── app_register.dart │ ├── app_window.dart │ ├── appinfo │ │ ├── app_info.dart │ │ └── app_info_bloc.dart │ ├── clipboard │ │ ├── clip_board.dart │ │ └── clip_board_bloc.dart │ ├── dbview │ │ ├── db_events.dart │ │ ├── db_view.dart │ │ ├── db_view_bloc.dart │ │ ├── db_view_models.dart │ │ └── widgets │ │ │ ├── db_query.dart │ │ │ ├── db_sub_windows.dart │ │ │ ├── db_table_data.dart │ │ │ └── db_tree.dart │ ├── deviceinfo │ │ ├── device_info.dart │ │ └── device_info_bloc.dart │ ├── fileexplorer │ │ ├── file_explorer.dart │ │ ├── file_explorer_bloc.dart │ │ ├── file_explorer_models.dart │ │ └── widgets │ │ │ ├── file_explorer_list.dart │ │ │ └── file_explorer_tree.dart │ ├── httphook │ │ ├── http_hook_bloc.dart │ │ ├── http_hook_window.dart │ │ ├── http_models.dart │ │ └── widgets │ │ │ ├── http_hook_archive_detail.dart │ │ │ ├── http_hook_archive_list.dart │ │ │ └── http_hook_domain_tree.dart │ ├── httphookconfig │ │ ├── hook_config_bloc.dart │ │ ├── hook_config_models.dart │ │ ├── throttle_config_window.dart │ │ └── widgets │ │ │ ├── config_list.dart │ │ │ ├── config_window.dart │ │ │ ├── map_local_edit.dart │ │ │ └── map_remote_edit.dart │ ├── imagepreview │ │ ├── image_preview.dart │ │ └── image_preview_bloc.dart │ ├── logwatcher │ │ ├── log_models.dart │ │ ├── log_watcher.dart │ │ └── log_watcher_bloc.dart │ ├── model.dart │ ├── pagenavigator │ │ ├── page_navigator.dart │ │ ├── page_navigator_bloc.dart │ │ ├── page_navigator_models.dart │ │ └── widgets │ │ │ └── page_navigator_tree.dart │ ├── photomanager │ │ ├── asset_preview.dart │ │ ├── asset_preview_bloc.dart │ │ ├── photo_manager.dart │ │ ├── photo_manager_bloc.dart │ │ ├── photo_models.dart │ │ └── widgets │ │ │ ├── album_tree.dart │ │ │ ├── asset_grid.dart │ │ │ ├── asset_item_thumb.dart │ │ │ ├── asset_list.dart │ │ │ └── asset_view.dart │ ├── screenrecorder │ │ ├── screen_recorder.dart │ │ └── screen_recorder_bloc.dart │ ├── sharedpreferences │ │ ├── shared_preferences.dart │ │ ├── shared_preferences_bloc.dart │ │ └── shared_preferences_models.dart │ ├── texteditor │ │ ├── text_editor.dart │ │ └── text_editor_bloc.dart │ ├── uicheck │ │ ├── uicheck.dart │ │ ├── uicheck_bloc.dart │ │ └── uicheck_models.dart │ └── videoplayer │ │ ├── video_player.dart │ │ └── video_player_bloc.dart │ ├── app_window_bloc.dart │ ├── bloc_provider.dart │ ├── common_widgets.dart │ ├── custom_color.dart │ ├── event │ └── PinEvent.dart │ ├── event_bus.dart │ ├── theme.dart │ ├── ui │ └── theme.dart │ ├── web_bloc.dart │ ├── web_http.dart │ ├── websocket │ ├── web_socket_bloc.dart │ └── web_socket_models.dart │ └── widgets │ ├── app_navi_bar.dart │ ├── common_widgets.dart │ ├── flutter_cursor │ ├── cursors.dart │ └── flutter_cursor.dart │ ├── item_picker.dart │ ├── mjpeg │ ├── mjpeg_controller.dart │ └── mjpeg_view.dart │ ├── paginated_data_table.dart │ ├── root_navi_bar.dart │ ├── split.dart │ ├── toast.dart │ └── tree.dart ├── pubspec.yaml ├── test └── widget_test.dart └── web ├── favicon.png ├── icons ├── Icon-192.png └── Icon-512.png ├── index.html └── manifest.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/README_CN.md -------------------------------------------------------------------------------- /docs/INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/docs/INTEGRATION.md -------------------------------------------------------------------------------- /tools_plugin/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/.metadata -------------------------------------------------------------------------------- /tools_plugin/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/CHANGELOG.md -------------------------------------------------------------------------------- /tools_plugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/LICENSE -------------------------------------------------------------------------------- /tools_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/README.md -------------------------------------------------------------------------------- /tools_plugin/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/.gitignore -------------------------------------------------------------------------------- /tools_plugin/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/build.gradle -------------------------------------------------------------------------------- /tools_plugin/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/gradle.properties -------------------------------------------------------------------------------- /tools_plugin/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /tools_plugin/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'debugtools' 2 | -------------------------------------------------------------------------------- /tools_plugin/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/ScreenPreviewPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/ScreenPreviewPlugin.java -------------------------------------------------------------------------------- /tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/screen/FpsHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/screen/FpsHelper.java -------------------------------------------------------------------------------- /tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/screen/FrameInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/screen/FrameInfo.java -------------------------------------------------------------------------------- /tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/screen/ScreenCaptureService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/screen/ScreenCaptureService.java -------------------------------------------------------------------------------- /tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/screen/ScreenPreviewRecorder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/screen/ScreenPreviewRecorder.java -------------------------------------------------------------------------------- /tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/screen/ScreenPreviewSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/src/main/java/com/kwai/flutter/debugtools/screen/ScreenPreviewSender.java -------------------------------------------------------------------------------- /tools_plugin/android/src/main/kotlin/com/kwai/flutter/debugtools/DebugtoolsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/android/src/main/kotlin/com/kwai/flutter/debugtools/DebugtoolsPlugin.kt -------------------------------------------------------------------------------- /tools_plugin/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/.gitignore -------------------------------------------------------------------------------- /tools_plugin/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/.metadata -------------------------------------------------------------------------------- /tools_plugin/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/README.md -------------------------------------------------------------------------------- /tools_plugin/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/.gitignore -------------------------------------------------------------------------------- /tools_plugin/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/build.gradle -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/main/kotlin/com/kwai/flutter/debugtools_example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/main/kotlin/com/kwai/flutter/debugtools_example/MainActivity.kt -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /tools_plugin/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /tools_plugin/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/build.gradle -------------------------------------------------------------------------------- /tools_plugin/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/gradle.properties -------------------------------------------------------------------------------- /tools_plugin/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /tools_plugin/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/android/settings.gradle -------------------------------------------------------------------------------- /tools_plugin/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/.gitignore -------------------------------------------------------------------------------- /tools_plugin/example/ios/Flutter/.last_build_id: -------------------------------------------------------------------------------- 1 | a9a03d916e3ef114d08bdd1a80fb0df6 -------------------------------------------------------------------------------- /tools_plugin/example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /tools_plugin/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /tools_plugin/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /tools_plugin/example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Podfile -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /tools_plugin/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /tools_plugin/example/lib/demo_serv_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/lib/demo_serv_config.dart -------------------------------------------------------------------------------- /tools_plugin/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/lib/main.dart -------------------------------------------------------------------------------- /tools_plugin/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/example/pubspec.yaml -------------------------------------------------------------------------------- /tools_plugin/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/ios/.gitignore -------------------------------------------------------------------------------- /tools_plugin/ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools_plugin/ios/Classes/DebugtoolsPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/ios/Classes/DebugtoolsPlugin.h -------------------------------------------------------------------------------- /tools_plugin/ios/Classes/DebugtoolsPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/ios/Classes/DebugtoolsPlugin.m -------------------------------------------------------------------------------- /tools_plugin/ios/k_debug_tools.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/ios/k_debug_tools.podspec -------------------------------------------------------------------------------- /tools_plugin/lib/k_debug_tools.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/k_debug_tools.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/appinfo/app_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/appinfo/app_info.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/dbview/db_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/dbview/db_controller.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/dbview/db_view_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/dbview/db_view_controller.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/dbview/db_view_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/dbview/db_view_models.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/debugger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/debugger.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/deviceinfo/device_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/deviceinfo/device_info.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/fileexplorer/file_explorer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/fileexplorer/file_explorer.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/fileexplorer/file_explorer_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/fileexplorer/file_explorer_models.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/http_client_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/http_client_wrapper.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/http_float_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/http_float_button.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/http_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/http_models.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/http_request_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/http_request_wrapper.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/http_response_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/http_response_wrapper.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httparchive/http_archive_detail_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httparchive/http_archive_detail_page.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httparchive/http_archive_list_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httparchive/http_archive_list_page.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httparchive/http_request_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httparchive/http_request_widget.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httparchive/http_response_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httparchive/http_response_widget.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httparchive/json_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httparchive/json_view.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httphook/config_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httphook/config_models.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httphook/config_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httphook/config_provider.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httphook/http_hook.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httphook/http_hook.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httphook/http_hook_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httphook/http_hook_controller.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httphook/http_hook_local_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httphook/http_hook_local_service.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/httphook/http_throttle_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/httphook/http_throttle_controller.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/http/network_debugger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/http/network_debugger.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/logwatcher/log_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/logwatcher/log_models.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/logwatcher/log_watcher_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/logwatcher/log_watcher_controller.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/model/base_model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/model/base_model.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/model/localization_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/model/localization_options.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/model/photo_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/model/photo_models.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/model/web_socket_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/model/web_socket_models.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/navigator/navigator_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/navigator/navigator_models.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/register.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/register.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/serverconfig/server_config.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/serverconfig/server_config.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/serverconfig/server_config_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/serverconfig/server_config_models.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/uicheck/uicheck_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/uicheck/uicheck_models.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handler_def.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handler_def.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/app_info_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/app_info_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/clip_board_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/clip_board_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/db_view_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/db_view_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/device_info_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/device_info_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/file_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/file_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/httphook_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/httphook_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/logwatcher_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/logwatcher_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/navigator_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/navigator_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/photo_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/photo_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/pin_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/pin_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/screen_recorder_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/screen_recorder_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/sp_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/sp_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/static_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/static_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/ui_check_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/ui_check_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/handlers/ws_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/handlers/ws_handler.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/webserver/web_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/webserver/web_server.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/widgets/common_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/widgets/common_widgets.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/widgets/dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/widgets/dialog.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/widgets/floating_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/widgets/floating_button.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/widgets/list_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/widgets/list_widgets.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/widgets/main_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/widgets/main_dialog.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/widgets/progress_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/widgets/progress_dialog.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/widgets/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/widgets/toast.dart -------------------------------------------------------------------------------- /tools_plugin/lib/src/widgets/transparent_route.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/lib/src/widgets/transparent_route.dart -------------------------------------------------------------------------------- /tools_plugin/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_plugin/pubspec.yaml -------------------------------------------------------------------------------- /tools_web/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/.metadata -------------------------------------------------------------------------------- /tools_web/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/CHANGELOG.md -------------------------------------------------------------------------------- /tools_web/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/LICENSE -------------------------------------------------------------------------------- /tools_web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/README.md -------------------------------------------------------------------------------- /tools_web/l10n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/l10n.yaml -------------------------------------------------------------------------------- /tools_web/lib/l10n/app_en.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/l10n/app_en.arb -------------------------------------------------------------------------------- /tools_web/lib/l10n/app_zh.arb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/l10n/app_zh.arb -------------------------------------------------------------------------------- /tools_web/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/main.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/app_register.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/app_register.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/app_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/app_window.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/appinfo/app_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/appinfo/app_info.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/appinfo/app_info_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/appinfo/app_info_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/clipboard/clip_board.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/clipboard/clip_board.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/clipboard/clip_board_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/clipboard/clip_board_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/dbview/db_events.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/dbview/db_events.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/dbview/db_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/dbview/db_view.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/dbview/db_view_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/dbview/db_view_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/dbview/db_view_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/dbview/db_view_models.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/dbview/widgets/db_query.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/dbview/widgets/db_query.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/dbview/widgets/db_sub_windows.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/dbview/widgets/db_sub_windows.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/dbview/widgets/db_table_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/dbview/widgets/db_table_data.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/dbview/widgets/db_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/dbview/widgets/db_tree.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/deviceinfo/device_info.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/deviceinfo/device_info.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/deviceinfo/device_info_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/deviceinfo/device_info_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/fileexplorer/file_explorer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/fileexplorer/file_explorer.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/fileexplorer/file_explorer_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/fileexplorer/file_explorer_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/fileexplorer/file_explorer_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/fileexplorer/file_explorer_models.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/fileexplorer/widgets/file_explorer_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/fileexplorer/widgets/file_explorer_list.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/fileexplorer/widgets/file_explorer_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/fileexplorer/widgets/file_explorer_tree.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphook/http_hook_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphook/http_hook_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphook/http_hook_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphook/http_hook_window.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphook/http_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphook/http_models.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphook/widgets/http_hook_archive_detail.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphook/widgets/http_hook_archive_detail.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphook/widgets/http_hook_archive_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphook/widgets/http_hook_archive_list.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphook/widgets/http_hook_domain_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphook/widgets/http_hook_domain_tree.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphookconfig/hook_config_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphookconfig/hook_config_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphookconfig/hook_config_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphookconfig/hook_config_models.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphookconfig/throttle_config_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphookconfig/throttle_config_window.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphookconfig/widgets/config_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphookconfig/widgets/config_list.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphookconfig/widgets/config_window.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphookconfig/widgets/config_window.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphookconfig/widgets/map_local_edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphookconfig/widgets/map_local_edit.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/httphookconfig/widgets/map_remote_edit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/httphookconfig/widgets/map_remote_edit.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/imagepreview/image_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/imagepreview/image_preview.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/imagepreview/image_preview_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/imagepreview/image_preview_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/logwatcher/log_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/logwatcher/log_models.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/logwatcher/log_watcher.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/logwatcher/log_watcher.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/logwatcher/log_watcher_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/logwatcher/log_watcher_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/model.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/model.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/pagenavigator/page_navigator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/pagenavigator/page_navigator.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/pagenavigator/page_navigator_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/pagenavigator/page_navigator_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/pagenavigator/page_navigator_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/pagenavigator/page_navigator_models.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/pagenavigator/widgets/page_navigator_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/pagenavigator/widgets/page_navigator_tree.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/photomanager/asset_preview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/photomanager/asset_preview.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/photomanager/asset_preview_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/photomanager/asset_preview_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/photomanager/photo_manager.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/photomanager/photo_manager.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/photomanager/photo_manager_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/photomanager/photo_manager_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/photomanager/photo_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/photomanager/photo_models.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/photomanager/widgets/album_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/photomanager/widgets/album_tree.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/photomanager/widgets/asset_grid.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/photomanager/widgets/asset_grid.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/photomanager/widgets/asset_item_thumb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/photomanager/widgets/asset_item_thumb.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/photomanager/widgets/asset_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/photomanager/widgets/asset_list.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/photomanager/widgets/asset_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/photomanager/widgets/asset_view.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/screenrecorder/screen_recorder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/screenrecorder/screen_recorder.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/screenrecorder/screen_recorder_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/screenrecorder/screen_recorder_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/sharedpreferences/shared_preferences.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/sharedpreferences/shared_preferences.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/sharedpreferences/shared_preferences_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/sharedpreferences/shared_preferences_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/sharedpreferences/shared_preferences_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/sharedpreferences/shared_preferences_models.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/texteditor/text_editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/texteditor/text_editor.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/texteditor/text_editor_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/texteditor/text_editor_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/uicheck/uicheck.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/uicheck/uicheck.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/uicheck/uicheck_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/uicheck/uicheck_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/uicheck/uicheck_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/uicheck/uicheck_models.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/videoplayer/video_player.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/videoplayer/video_player.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app/videoplayer/video_player_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app/videoplayer/video_player_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/app_window_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/app_window_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/bloc_provider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/bloc_provider.dart -------------------------------------------------------------------------------- /tools_web/lib/src/common_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/common_widgets.dart -------------------------------------------------------------------------------- /tools_web/lib/src/custom_color.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/custom_color.dart -------------------------------------------------------------------------------- /tools_web/lib/src/event/PinEvent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/event/PinEvent.dart -------------------------------------------------------------------------------- /tools_web/lib/src/event_bus.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/event_bus.dart -------------------------------------------------------------------------------- /tools_web/lib/src/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/theme.dart -------------------------------------------------------------------------------- /tools_web/lib/src/ui/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/ui/theme.dart -------------------------------------------------------------------------------- /tools_web/lib/src/web_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/web_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/web_http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/web_http.dart -------------------------------------------------------------------------------- /tools_web/lib/src/websocket/web_socket_bloc.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/websocket/web_socket_bloc.dart -------------------------------------------------------------------------------- /tools_web/lib/src/websocket/web_socket_models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/websocket/web_socket_models.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/app_navi_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/app_navi_bar.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/common_widgets.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/common_widgets.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/flutter_cursor/cursors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/flutter_cursor/cursors.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/flutter_cursor/flutter_cursor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/flutter_cursor/flutter_cursor.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/item_picker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/item_picker.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/mjpeg/mjpeg_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/mjpeg/mjpeg_controller.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/mjpeg/mjpeg_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/mjpeg/mjpeg_view.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/paginated_data_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/paginated_data_table.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/root_navi_bar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/root_navi_bar.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/split.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/split.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/toast.dart -------------------------------------------------------------------------------- /tools_web/lib/src/widgets/tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/lib/src/widgets/tree.dart -------------------------------------------------------------------------------- /tools_web/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/pubspec.yaml -------------------------------------------------------------------------------- /tools_web/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/test/widget_test.dart -------------------------------------------------------------------------------- /tools_web/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/web/favicon.png -------------------------------------------------------------------------------- /tools_web/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/web/icons/Icon-192.png -------------------------------------------------------------------------------- /tools_web/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/web/icons/Icon-512.png -------------------------------------------------------------------------------- /tools_web/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/web/index.html -------------------------------------------------------------------------------- /tools_web/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KwaiAppTeam/KDebugTools/HEAD/tools_web/web/manifest.json --------------------------------------------------------------------------------