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

Under the Windows platform, the use of C ++ 20 standards to compile will report errors: C4596

windowManager.maximize() doesn't work when I change onDoubleTap to onDoubleTapDown (only windows) ``` @override Widget build(BuildContext context) { return GestureDetector( behavior: HitTestBehavior.translucent, onPanStart: (details) { windowManager.startDragging(); }, onDoubleTapDown: (details) async {...

Window flashes when startup since version 0.3.7 on Windows. WindowOptions is set with "center: true" and "titleBarStyle: TitleBarStyle.hidden". It seems that the window is initially located somewhere else, then moved...

**Steps to reproduce** 1. Move the window to the edge of the screen, overflowing the screen 2. Minimize the window 3. Click the taskbar icon again to open the window...

### Title: Windows 11: Window control buttons missing or flickering, title disappears intermittently using `window_manager` Flutter plugin ### Description: I am experiencing a persistent issue on Windows 11 where the...

> i tried > ``` > flutter clean > flutter pub get > ``` > > but still it didnot worked and i can see library is installed successfully _Originally...

every major distribution now runs wayland by default, it's very necessary to be able to control the which layer the window is displayed at.

I hope to add a parameter to WindowOptions so that the window can be maximized on initialization, because I need this for a reporting requirement. Thank you. ```dart const WindowOptions({...

这使用了一个临时解决方案:隐藏窗口时,不透明度设置为 0;再次显示窗口时,不透明度恢复正常,从而避免闪烁问题。 This uses a temporary workaround: when the window is hidden, its opacity is set to 0; when the window is shown again, the opacity returns to normal, thus...