flutter-plugins
flutter-plugins copied to clipboard
🧱 Flutter plugins used in Mixin Messenger.
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.
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()); }...
How to change this icon in sub screens with `desktop_multi_window` 
how to postMessage a javascript message handler from webview to flutter windows
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.
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).
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...
Please support get and set the html format for desktop
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...
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...