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 147 window_manager issues
Sort by recently updated
recently updated
newest added

"await windowManager.setFullScreen(true);" it's working on windows. but the same code doesn't work on macos. i don't kown why. my macos version is 13.1, flutter version is 3.7

![화면 캡처 2023-04-30 102257](https://user-images.githubusercontent.com/117099209/235342108-f05b5688-c73b-465e-87fc-e9cd3109fbb5.png) This is a confirmed issue when the video player is fullscreen and back to original size, or if you make it fullscreen from original size. The...

not sure if it's possible to implement but after navigating to another page, the windowCaption dissappears for obvious reasons, any way to pin it?

close() doesn't work if setClosable(false) setTitleBarStyle(TitleBarStyle.hidden); doesn't work setSize() doesn't work Is there a usable fork? This is pathetic. Bugs on Linux and macOS (I haven't tested windows) Also, on...

Hello, to render my window in the code i've put that in my main function : ``` WidgetsFlutterBinding.ensureInitialized(); await windowManager.ensureInitialized(); String feedURL = 'https://update.gregsvc.fr/WinSpeakerSwitcher.xml'; await autoUpdater.setFeedURL(feedURL); await autoUpdater.checkForUpdates(); // For...

Changes whether the window can be focused.

If you minimize an application window using the minimize button on the window control panel, the `onWindowBlur` is triggered when the window is expanded, not `onWindowFocus`. https://user-images.githubusercontent.com/84403637/216372165-143ac3c3-2a43-48f3-a54b-8d9be750183d.mp4

Currently, there's no way to listen to changes in whether a window is - minimizable - maximizable - closable Therefore, a generic title bar has no way to update itself...

I am trying to create a wrapping class to control and keep tabs on `minimizable`, `maximizable` and `closable`. I would like to be able to toggle the screen frame as...

I am trying to create a wrapping class to control and keep tabs on `minimizable`, `maximizable` and `closable`. I would like to get the window's `TitleBarStyle` to show as well.