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

Hello, I'd like to know if it's possible to make the taskbar outside the window size? I mean, if I set a size for my window, I don't want the...

```dart GestureDetector( behavior: HitTestBehavior.translucent, onPanStart: (details) { if (Platform.isWindows) windowManager.startDragging(); }, onDoubleTap: this.onDoubleTap ?? () async { // FIX: white screen Bug if (await windowManager.isMaximizable()) { await windowManager.maximize(); } else...

WindowOptions windowOptions = const WindowOptions( //这里的title设置的是底部菜单栏显示的名称 title: '教学资源平台', //居中显示 center: true, //设置背景颜色,可以消除闪黑,但是会导致原生窗口 backgroundColor: Color(0XFFFAFAFA), // 是否启用跳过任务栏 skipTaskbar: false, // 窗口标题栏样式 titleBarStyle: TitleBarStyle.hidden, ); windowManager.waitUntilReadyToShow(windowOptions, () async { // await windowManager.setIcon('images/mlp_icon.ico');...

有这么一个需求: 用户在flutter app里面输入一段文字,然后enter或者点击某个按钮,此时就hide 或者 取消app的焦点,还给上一个窗口应用的input box。 这个应该如何实现啊

When the title specified in WindowOptions is longer than the original it gets shortened to the original length with ellipses until the window is resized.

How to reproduce 1. flutter run -d windows 2. Put the windows behide other window in 10 seconds ``` import 'dart:async'; import 'package:flutter/material.dart'; import 'package:window_manager/window_manager.dart'; void main() { runApp(const MyApp());...

全屏不知道为什么要调用`::ShowWindow(window, SW_MAXIMIZE);`,恢复的时候又会调用`::ShowWindow(window, SW_RESTORE);`。照理说全屏应该和最大化没关系,现在如果已经是最大化的窗口全屏后恢复,会改变2次大小,看起来比较闪烁。