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

This issue occurs when the window is minimized and restored, and it is a common occurrence on extended screens. ![image](https://github.com/user-attachments/assets/cc554e16-e475-4b2e-9f91-a5c52c6394e4) window_manager: 0.4.2

I'm using the Flutter window_manager package to hide the window title bar in my desktop app. However, I'm encountering an issue when an external monitor is connected or when the...

Hi. I want to use this library but it does weird thing. I have setup it like this ` void main() async { WidgetsFlutterBinding.ensureInitialized(); await windowManager.ensureInitialized(); windowManager.hide(); WindowOptions windowOptions =...

Issue: https://github.com/rustdesk/rustdesk/issues/9481#issuecomment-2378509607

https://github.com/leanflutter/window_manager/issues/489 Get window monitor when it is restored from minimized state(current maximized), https://github.com/user-attachments/assets/e8a035f5-1355-413f-a0e4-5277ed2f30b0

`Flutter assets will be downloaded from https://storage.flutter-io.cn. Make sure you trust this source! Launching lib\main.dart on Windows in debug mode... Building Windows application... Nuget.exe not found, trying to download or...

When I use await windowManager.ensureInitialized(), the program freezes and remains stuck on a black screen.

When using v0.5.0 a warning is given on Mac M1 when building for macOS Desktop. v0.5.0 works fine for iOS 16 simulator. v0.4.3 no warning is given on same machine....

```import 'package:flutter/material.dart'; import 'package:flutter_inappwebview/flutter_inappwebview.dart'; import 'package:window_manager/window_manager.dart'; void main() async { WidgetsFlutterBinding.ensureInitialized(); await windowManager.ensureInitialized(); WindowOptions windowOptions = const WindowOptions( size: Size(800, 600), center: true, backgroundColor: Colors.transparent, skipTaskbar: false, titleBarStyle: TitleBarStyle.normal, windowButtonVisibility:...

**description** Window_manager and desktop_multi_window are used at the same time. First, multiple Windows are opened, and each window uses window_manager to randomly close the open secondary Windows, which will cause...