window_manager
window_manager copied to clipboard
This plugin allows Flutter desktop apps to resizing and repositioning the window.
**Description:** On windows, the `SetBrightness` controls the flag `DWMWA_USE_IMMERSIVE_DARK_MODE` as shown here: https://github.com/leanflutter/window_manager/blob/main/windows/window_manager.cpp#L1002 The value of `DWMWA_USE_IMMERSIVE_DARK_MODE` is hard coded to 19 in the same file: https://github.com/leanflutter/window_manager/blob/main/windows/window_manager.cpp#L31 However, in the...
按钮方法(使用版本 0.3.6): ``` static void maximize() async { if (await windowManager.isMaximized()) { await windowManager.unmaximize(); } else { await windowManager.maximize(); } } ``` 先放大(maximize()),点击恢复正常(unmaximize()),卡死  大概过5到6秒,恢复正常: 
Calling show() shows the window AND focuses it. Is it possible to only show the window ?? Restore() is not the way to go since my window comes from the...
Description: Hello, I am currently working on a Flutter application for Windows that acts as a virtual keyboard. I am using the window_manager plugin to manage the application window. The...
I set the screen to a certain point with the setbounds function and change the page content. I get the following error when using the setbounds function. I checked the...
When WindowOptions set TitleBarStyle.hidden, TitleBar will flash on exiting full screen
Main: ``` Future main() async { // [01]: Creating app final app = App(); // [02]: Initiating app await app.init(); // [03]: Running app runApp(app); } ``` ``` App.init: Future...
使用windowManager.getTitleBarHeight()返回的height构建title bar. 点击Reload  返回负值导致异常
when the app is alwaysOnTop and then minimize the app, unable to open the app again. on MacOS 13+ with 'Foreground Priority Boost' open
Hello, I have a demand, which is very weried. I have an app which is desktop just like a searchbar. I want when the input filed submited, it **release it's...