window_manager icon indicating copy to clipboard operation
window_manager copied to clipboard

This plugin allows Flutter desktop apps to resizing and repositioning the window.

Results 205 window_manager issues
Sort by recently updated
recently updated
newest added

I was trying to show two 16/9 video streams stacked vertically and changed the aspect ratio to 16/18 but that does not work properly because the titlebar included in the...

platform-windows

Double-clicking the top of the application to maximize or unmaximize the window results in the first click not doing anything. I have to click twice in order for any of...

On Windows 11, I have a default size of 1024 by 768 pixels. When I launch de desktop app on Windows 11 and inspect the widget inspector, the actual size...

在WindowManagerPlugin析构时应将channel置为空指针。在析构之后还传递窗口消息,在invokeMethod方法内会出现messenger_指针异常问题。复现方法为在退出应用前调用关闭窗口的方法,再退出应用。 下面为我解决该问题添加的指针处理: ``` WindowManagerPlugin::~WindowManagerPlugin() { registrar->UnregisterTopLevelWindowProcDelegate(window_proc_id); channel = nullptr; } void WindowManagerPlugin::_EmitEvent(std::string eventName) { if (channel) { flutter::EncodableMap args = flutter::EncodableMap(); args[flutter::EncodableValue("eventName")] = flutter::EncodableValue(eventName); channel->InvokeMethod("onEvent", std::make_unique(args)); } } ```

### Alright I've been kind of trying to fix this issue. Here's what I found: 1. `WindowEffect.transparent` is compatible, no issues there. 2. `TitleBarStyle.hidden` is NOT compatible with `WindowEffect.mica`, `WindowEffect.acrylic`,...

**Issue** If I try running the example code but remove the following lines: ``` diff --git a/example/lib/pages/home.dart b/example/lib/pages/home.dart index 75c3c1e..e566590 100644 --- a/example/lib/pages/home.dart +++ b/example/lib/pages/home.dart @@ -185,8 +185,8 @@ class...

platform-macos

![0594cfafc00cb51235aea7d028a6430d](https://github.com/leanflutter/window_manager/assets/9330618/da42be9a-2c01-47ad-91cb-2a4c06ced2c1)

When calling the plugin before `runApp` on GDK/Linux, the following assertion fails: `Gdk-CRITICAL **: 11:45:31.985: gdk_window_get_state: assertion 'GDK_IS_WINDOW (window)' failed` **Additional info** * https://github.com/leanflutter/window_manager/blob/8caf178456968fee5ee82dd90d95a01dd4b1137b/linux/window_manager_plugin.cc#L596 * https://stackoverflow.com/questions/54144406/stack7229-gdk-critical-110922-221-gdk-window-get-origin-assertion-g

Requesting the addition of multi-window support to the window_manager Flutter package. ### Feature Request: Enable the creation and management of multiple windows within a Flutter application. Each window should have...