window_manager
window_manager copied to clipboard
This plugin allows Flutter desktop apps to resizing and repositioning the window.
I am trying to create a wrapping class to control and keep tabs on `minimizable`, `maximizable` and `closable`. I would like to get if the window is frameless to show...
After window_manager.hide() called, I use window_manager.show(), then display a empty window. Is there some function to refresh the window render like window rerender function ? 
我的两块屏幕: devicePixelRatio 的值为 1.25 的普通笔记本屏幕:  devicePixelRatio 的值为 1.5 的小米4k显示器:  程序初始化代码如下: ```dart void main() async { WidgetsFlutterBinding.ensureInitialized(); await windowManager.ensureInitialized(); WindowOptions windowOptions = const WindowOptions( size: Size(320, 460), minimumSize: Size(320,...
I'm on linux, haven't tested others. await m.setSize(const Size(222, 111), animate: true); await m.setTitleBarStyle(TitleBarStyle.hidden); await m.setResizable(false); await m.setClosable(false); await m.center(animate: true); That doesn't work unless I set await m.setResizable(true);
当前在 APP hide 后,通过 show 方法呼出后会抢占系统的焦点,希望能支持浮动窗口(APP show 之后再次 hide ,不需要再次点击鼠标获取上一个 APP 的焦点)。
Currently, when using ```dart await windowManager.setTitleBarStyle( TitleBarStyle.hidden, windowButtonVisibility: false, ); ``` The top part of the window frame is removed as well. Is this a bug, intended or am I...
1.使用desktop_multi_window打开主窗口和子窗口。 2.目前window_manager能在主窗口正常使用,去掉了系统标题栏,增加了自定义标题栏。 3.但是子窗口无法使用window_manager进行自定义标题栏。 
Expected result : app gets closed immediately after calling destroy method
 https://github.com/user-attachments/assets/618b9359-b2d0-48da-8ca7-bc4d17db6635 There are many methods now, and it can be difficult to find the one you want in such a long list. This adds a search bar to the...
The window is set as frameless, after maximized there are 1 pixel gap as attached image: 