flutter-plugins icon indicating copy to clipboard operation
flutter-plugins copied to clipboard

🧱 Flutter plugins used in Mixin Messenger.

Results 168 flutter-plugins issues
Sort by recently updated
recently updated
newest added

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...

![ScreenRecording_06-14-2025 09-39-46_1](https://github.com/user-attachments/assets/2988dfc6-efbf-465c-a74b-62b800e6d468)

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); },...