├── .github └── workflows │ └── build.yml ├── .gitignore ├── .metadata ├── .vscode ├── launch.json └── settings.json ├── README.md ├── analysis_options.yaml ├── assets └── icon.ico ├── docs ├── devices.png └── file_manager.png ├── generate_channels.ps1 ├── google_fonts ├── NotoSans-Bold.ttf ├── NotoSans-BoldItalic.ttf ├── NotoSans-Italic.ttf ├── NotoSans-Regular.ttf └── OFL.txt ├── innosetup.iss ├── lib ├── inno_setup.dart ├── main.dart ├── pages │ ├── adb_check.dart │ ├── main │ │ ├── browser.dart │ │ ├── devices.dart │ │ ├── logger.dart │ │ ├── package_list.dart │ │ └── settings.dart │ └── main_page.dart ├── riverpod │ ├── file_browser.dart │ ├── file_browser.freezed.dart │ ├── file_browser.g.dart │ ├── file_queue.dart │ ├── file_queue.g.dart │ ├── package_list.dart │ ├── package_list.freezed.dart │ ├── package_list.g.dart │ ├── selected_device.dart │ ├── selected_device.g.dart │ ├── settings.dart │ ├── settings.freezed.dart │ └── settings.g.dart ├── routes.dart ├── src │ ├── pigeon.g.dart │ └── pigeon_impl.dart ├── utils │ ├── adb.dart │ ├── file_sort.dart │ ├── listener.dart │ ├── math.dart │ ├── platform.dart │ ├── scroll.dart │ ├── sort.dart │ ├── stack.dart │ └── storage.dart └── widgets │ ├── adaptive │ ├── dialog.dart │ └── menu_context.dart │ ├── adb_queue_indicator.dart │ ├── browser │ ├── file_data.dart │ ├── file_table.dart │ └── file_widget.dart │ ├── conditional.dart │ ├── device_card.dart │ ├── progress_snackbar.dart │ ├── shortcuts.dart │ └── watchers.dart ├── linux ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake ├── main.cc ├── my_application.cc └── my_application.h ├── macos ├── .gitignore ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Podfile ├── Podfile.lock ├── Runner.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── Runner.xcscheme ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_256.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_512.png │ │ │ └── app_icon_64.png │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── Configs │ │ ├── AppInfo.xcconfig │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ └── Warnings.xcconfig │ ├── DebugProfile.entitlements │ ├── Info.plist │ ├── MainFlutterWindow.swift │ ├── Release.entitlements │ ├── pigeon.g.h │ └── pigeon.g.m └── RunnerTests │ └── RunnerTests.swift ├── pigeon └── mouse_event.dart ├── pubspec.lock ├── pubspec.yaml ├── snap ├── gui │ └── desktop-adb-file-browser.desktop └── snapcraft.yaml ├── test └── widget_test.dart ├── windows ├── .gitignore ├── CMakeLists.txt ├── flutter │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake └── runner │ ├── CMakeLists.txt │ ├── Runner.rc │ ├── flutter_window.cpp │ ├── flutter_window.h │ ├── main.cpp │ ├── pigeon.g.cpp │ ├── pigeon.g.h │ ├── resource.h │ ├── resources │ └── app_icon.ico │ ├── runner.exe.manifest │ ├── utils.cpp │ ├── utils.h │ ├── win32_window.cpp │ └── win32_window.h └── windows_build.ps1 /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/.metadata -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/assets/icon.ico -------------------------------------------------------------------------------- /docs/devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/docs/devices.png -------------------------------------------------------------------------------- /docs/file_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/docs/file_manager.png -------------------------------------------------------------------------------- /generate_channels.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/generate_channels.ps1 -------------------------------------------------------------------------------- /google_fonts/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/google_fonts/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /google_fonts/NotoSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/google_fonts/NotoSans-BoldItalic.ttf -------------------------------------------------------------------------------- /google_fonts/NotoSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/google_fonts/NotoSans-Italic.ttf -------------------------------------------------------------------------------- /google_fonts/NotoSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/google_fonts/NotoSans-Regular.ttf -------------------------------------------------------------------------------- /google_fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/google_fonts/OFL.txt -------------------------------------------------------------------------------- /innosetup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/innosetup.iss -------------------------------------------------------------------------------- /lib/inno_setup.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/inno_setup.dart -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/pages/adb_check.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/pages/adb_check.dart -------------------------------------------------------------------------------- /lib/pages/main/browser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/pages/main/browser.dart -------------------------------------------------------------------------------- /lib/pages/main/devices.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/pages/main/devices.dart -------------------------------------------------------------------------------- /lib/pages/main/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/pages/main/logger.dart -------------------------------------------------------------------------------- /lib/pages/main/package_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/pages/main/package_list.dart -------------------------------------------------------------------------------- /lib/pages/main/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/pages/main/settings.dart -------------------------------------------------------------------------------- /lib/pages/main_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/pages/main_page.dart -------------------------------------------------------------------------------- /lib/riverpod/file_browser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/file_browser.dart -------------------------------------------------------------------------------- /lib/riverpod/file_browser.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/file_browser.freezed.dart -------------------------------------------------------------------------------- /lib/riverpod/file_browser.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/file_browser.g.dart -------------------------------------------------------------------------------- /lib/riverpod/file_queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/file_queue.dart -------------------------------------------------------------------------------- /lib/riverpod/file_queue.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/file_queue.g.dart -------------------------------------------------------------------------------- /lib/riverpod/package_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/package_list.dart -------------------------------------------------------------------------------- /lib/riverpod/package_list.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/package_list.freezed.dart -------------------------------------------------------------------------------- /lib/riverpod/package_list.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/package_list.g.dart -------------------------------------------------------------------------------- /lib/riverpod/selected_device.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/selected_device.dart -------------------------------------------------------------------------------- /lib/riverpod/selected_device.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/selected_device.g.dart -------------------------------------------------------------------------------- /lib/riverpod/settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/settings.dart -------------------------------------------------------------------------------- /lib/riverpod/settings.freezed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/settings.freezed.dart -------------------------------------------------------------------------------- /lib/riverpod/settings.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/riverpod/settings.g.dart -------------------------------------------------------------------------------- /lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/routes.dart -------------------------------------------------------------------------------- /lib/src/pigeon.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/src/pigeon.g.dart -------------------------------------------------------------------------------- /lib/src/pigeon_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/src/pigeon_impl.dart -------------------------------------------------------------------------------- /lib/utils/adb.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/utils/adb.dart -------------------------------------------------------------------------------- /lib/utils/file_sort.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/utils/file_sort.dart -------------------------------------------------------------------------------- /lib/utils/listener.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/utils/listener.dart -------------------------------------------------------------------------------- /lib/utils/math.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/utils/math.dart -------------------------------------------------------------------------------- /lib/utils/platform.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/utils/platform.dart -------------------------------------------------------------------------------- /lib/utils/scroll.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/utils/scroll.dart -------------------------------------------------------------------------------- /lib/utils/sort.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/utils/sort.dart -------------------------------------------------------------------------------- /lib/utils/stack.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/utils/stack.dart -------------------------------------------------------------------------------- /lib/utils/storage.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/utils/storage.dart -------------------------------------------------------------------------------- /lib/widgets/adaptive/dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/adaptive/dialog.dart -------------------------------------------------------------------------------- /lib/widgets/adaptive/menu_context.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/adaptive/menu_context.dart -------------------------------------------------------------------------------- /lib/widgets/adb_queue_indicator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/adb_queue_indicator.dart -------------------------------------------------------------------------------- /lib/widgets/browser/file_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/browser/file_data.dart -------------------------------------------------------------------------------- /lib/widgets/browser/file_table.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/browser/file_table.dart -------------------------------------------------------------------------------- /lib/widgets/browser/file_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/browser/file_widget.dart -------------------------------------------------------------------------------- /lib/widgets/conditional.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/conditional.dart -------------------------------------------------------------------------------- /lib/widgets/device_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/device_card.dart -------------------------------------------------------------------------------- /lib/widgets/progress_snackbar.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/progress_snackbar.dart -------------------------------------------------------------------------------- /lib/widgets/shortcuts.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/shortcuts.dart -------------------------------------------------------------------------------- /lib/widgets/watchers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/lib/widgets/watchers.dart -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/linux/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/linux/main.cc -------------------------------------------------------------------------------- /linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/linux/my_application.cc -------------------------------------------------------------------------------- /linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/linux/my_application.h -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/.gitignore -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Flutter/Flutter-Debug.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Flutter/Flutter-Release.xcconfig -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /macos/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Podfile -------------------------------------------------------------------------------- /macos/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Podfile.lock -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Info.plist -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /macos/Runner/pigeon.g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/pigeon.g.h -------------------------------------------------------------------------------- /macos/Runner/pigeon.g.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/Runner/pigeon.g.m -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/macos/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /pigeon/mouse_event.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/pigeon/mouse_event.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /snap/gui/desktop-adb-file-browser.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/snap/gui/desktop-adb-file-browser.desktop -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/snap/snapcraft.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/test/widget_test.dart -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/Runner.rc -------------------------------------------------------------------------------- /windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/main.cpp -------------------------------------------------------------------------------- /windows/runner/pigeon.g.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/pigeon.g.cpp -------------------------------------------------------------------------------- /windows/runner/pigeon.g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/pigeon.g.h -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/resource.h -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/utils.cpp -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/utils.h -------------------------------------------------------------------------------- /windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows/runner/win32_window.h -------------------------------------------------------------------------------- /windows_build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fernthedev/desktop_adb_file_browser/HEAD/windows_build.ps1 --------------------------------------------------------------------------------