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

平台是 Windows 11。 似乎 `setPosition` 不会考虑屏幕的缩放倍率: 我的场景是我想做一个能够记录窗口位置的功能,而我平时用两个显示屏,主屏幕缩放率 250% 放在右边,而副屏幕 100% 缩放倍率放在左边,主屏幕的左上角和副屏幕的右上角对齐。 当通过 `getPosition` 获得了窗口位置,再用 `setPosition` 还原时,如果窗口在副屏幕上,它的实际位置会变成 位置 * (主屏幕倍率 / 副屏幕倍率) (在这个情况下也就是 2.5 倍),结果就是随便挪挪窗口就跑出屏幕外拖不回来了 🤔 虽然应该是可以通过 `screen_retriever` 的数据在 Dart 端手工计算正确的位置,但是显然如果...

Not working properly I used it for preventing screenshot and screen recording, Flag secure, When I entered into the screen its worked fine but when I navigate another screen and...

When adding .setMoveable to "window manager" startup properties: ![image](https://github.com/leanflutter/window_manager/assets/59819742/106889c5-9458-49b4-a30d-6ce808c89f39) This works: ``` void main() async { WidgetsFlutterBinding.ensureInitialized(); await windowManager.ensureInitialized(); WindowOptions windowOptions = const WindowOptions( size: Size(1920, 1080), center: true, backgroundColor:...

platform-windows

The window is focused in this state, therefore the wrong event is sent. Discovered on Windows 11. Example App: ```dart import 'package:flutter/material.dart'; import 'package:window_manager/window_manager.dart'; void main() { runApp(const MainApp()); }...

platform-windows

During `waitUntilReadyToShow`, the `fullScreen` is set to `true`. However, when the window is restored using `setFullScreen(false)`, it only displays the background color without any content and the taskbar icon also...

在waitUntilReadyToShow的时候,设置fullScreen为true。这个时候发现setFullScreen(false)恢复的时候,窗口只有背景色,无任何内容,也任务栏图标也消失。windowManager.minimize();这个调用也无任何反应。 平台为windows。

The current `setFullscreen()` function on Windows may show the native window border as described in #211 and the application content may flicker after `setFullscreen(true)`, Sometimes it may freeze the UI....

platform-windows

> windowManager.setResizable(false); > windowManager.setMaximizable(false); Either of the above two lines of code will cause the `setFullScreen` method to fail on the Linux platform, and this problem cannot be reproduced on...

windowManager.waitUntilReadyToShow(windowOptions, () async { await windowManager.setTitleBarStyle(TitleBarStyle.hidden, windowButtonVisibility: butenBool); await windowManager.focus(); await windowManager.setResizable(reSize); await windowManager.show(); }); this is my code , I want to not be able to resize the window...

platform-macos