flutter-plugins
flutter-plugins copied to clipboard
š§± Flutter plugins used in Mixin Messenger.
Hi, thank you for this helpful plugin! I'm using desktop_webview_window in my Flutter Linux app to embed a webview. The addOnUrlRequestCallback works fine for traditional full-page navigations, but it's not...

Iām experiencing significant performance degradation (low FPS / high raster time) when rendering multiple windows within the same Flutter process using the desktop_multi_window plugin on Windows. Each window displays its...
A clear and concise description of what the bug is: When using the desktop_multi_window plugin on macOS with a dual monitor setup, a subwindow that loses and then regains focus...
It is OK to get the image when there is image content in the system clipboard, but when I change the content, like I make another screenshot, then I cannot...
Trying to copy an image to clipboard using `Pasteboard.writeImage` (Android setup was done already) fails with the following error: ```bash I/flutter (28309): PlatformException(Error, Failed to write image, Failed to find...
Using desktop_webview_window in Desktop application to view some report on separate window, the app crashes upon closing the window using the standard close button (X) on the top-right corner. This...
This is a work in progress currently for macOS and Windows. # window creation options ``` dart final options = WindowOptions( macos: MacOSWindowOptions.nswindow( title: 'Sub Window', backgroundColor: Colors.transparent, level: MacOsWindowLevel.floating,...
Java 8 was deprecated with the release of Android Studio Ladybug, and is set to be removed in an upcoming version. All Flutter's 1st party plugins have migrated to Java...
```dart class FileDropBox extends StatelessWidget { FileDropBox({super.key}); final controller = Get.put(FileDropController()); @override Widget build(BuildContext context) { return DropTarget( onDragDone: (details) { final paths = details.files.map((file) => file.path).toList(); debugPrint("onDragDone!!!"); controller.onFilesDropped(paths); },...