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

I means, I can copy like image data and so on, instead of saving picture to a directory, That'll be more perfect. BTW, I mean on desktop platforms.

pasteboard

1. 使用`r`刷新的时候,会自动生成一个窗口,以下是部分代码: ```dart // main 函数 void main(List args) { if (args.firstOrNull == 'multi_window') { final windowId = int.parse(args[1]); debugPrint("[windowId]:$windowId"); runApp(MltoolsViewerHelper( windowController: WindowController.fromWindowId(windowId), )); } else { runApp(const MyApp()); }...

question
need-more-information
desktop_multi_window

How to change this icon in sub screens with `desktop_multi_window` ![image](https://user-images.githubusercontent.com/33513462/182791370-a81f3abe-60d4-4cb5-b021-f5b5e0c2c98d.png)

enhancement
platform-windows
desktop_multi_window

how to postMessage a javascript message handler from webview to flutter windows

desktop_webview_window

A way to manage cookies for auto-login similar to the mobile version here https://pub.dev/documentation/webview_flutter/latest/webview_flutter/CookieManager-class.html.

desktop_webview_window
feature-request

Please add support for loadFile(..), loadFlutterAsset(..) and loadHtmlString(..) into the `desktop_webview_window` similar to API provided by [WebViewPlatformController](https://pub.dev/documentation/webview_flutter_platform_interface/latest/webview_flutter_platform_interface/WebViewPlatformController-class.html).

desktop_webview_window
feature-request

Is there a way to bring the already opened window in front? I know that we can close a window or open the same one by closing it. However, I...

enhancement
feature-request
desktop_multi_window

Please support get and set the html format for desktop

enhancement
feature-request
pasteboard

If you click the minimize button in the upper right corner of the Web window, you will most likely get an overflow error ``` ======== Exception caught by rendering library...

desktop_webview_window

onDragDone: (detail) async { setState(() { list.addAll(detail.files); }); for (final file in detail.files) { debugPrint(file.mimeType); } }, Then the console prints out null。 done: D:\XXX.jpg flutter: null What should I...