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'm trying to make my app return to its last position after closing and opening. To do this, I save the position returned by getWindowPosition to persistent storage, and then...

In my Linux application, when running in fullscreen mode, every time I hide and then show the window again, it shifts slightly outside the screen. Over time, repeated hiding and...

我实在Windows 11上使用 `WindowOptions windowOptions = const WindowOptions( size: Size(800, 600), center: true, backgroundColor: Colors.transparent, skipTaskbar: false, titleBarStyle: TitleBarStyle.normal, windowButtonVisibility: false, ); windowManager.waitUntilReadyToShow(windowOptions, () async { await windowManager.show(); await windowManager.focus(); await...

The window does not set to fullscreen when using the property size: WidgetsBinding.instance.window.physicalSize. It does not adjust to the maximum available width and height. Below is the code which I...

This is the default behavior in Windows and some Linux window managers when right clicking the titlebar, so add it in the package too.

### Description: On Linux (X11), when a window is minimized and another window is clicked afterward, the original window fails to restore with `windowManager.restore().` ### Steps to Reproduce: 1. Run...

I'm observing that on Linux `await windowManager.setResizable(false);` disables our ability to use `await setSize(size)`. If I reenable resizing, set the size, then disable resizing like below: ``` await windowManager.setResizable(true); await...

我现在在开发一个视频播放器 [Iris](https://github.com/nini22P/Iris) ,使用视频比例设定为窗口比例。 播放竖屏视频时实际的窗口比例比设定的比例小,上下有黑边。 播放 21:9 视频时实际的窗口比例比设定的比例大,左右有黑边。 但是程序内部获取到的窗口比例仍是视频比例。

## Description When launching the Flutter application in GTK_PLUG mode on Linux (for embedding into other applications), the window becomes completely black if the project has `window_manager` as a dependency....