desktop_window icon indicating copy to clipboard operation
desktop_window copied to clipboard

Flutter plugin for Flutter desktop(macOS/Linux/Windows) to change window size.

Results 21 desktop_window issues
Sort by recently updated
recently updated
newest added

I tried to add some code like the following in my `main.dart`. ```dart if (!kIsWeb && (Platform.isWindows || Platform.isLinux || Platform.isMacOS)) { var size = Size(config.windowWidth, config.windowHeight); // disable window...

Can't set app to full screen using the following command: `await DesktopWindow.setFullScreen(true);` **Error:** ``` [ERROR:flutter/lib/ui/ui_dart_state.cc(199)] Unhandled Exception: mainWindow not found #0 DesktopWindow.getWindowSize (package:desktop_window/desktop_window.dart:16:5) ``` Environment: MacOS 11.4 Big Sur Mac...

Focus is an undefined method

setting maximum and minimum window size is not working in the same time on linux I am using KDE Plasma 5 as my desktop environment only the first used method...

Seems for me I'm missing some functions like setBorders() ? ![functions](https://user-images.githubusercontent.com/30728491/145906733-233c49bc-a317-48e7-979e-ea54e1ae544c.jpg)

the current setFullscreen works more like a .maximize() so I think we should call it that too. Behavour should be .maximize() = .toggleFullScreen() and .maximise(true) = .setFullScreen(true) and .maximize(false) =...

] Unhandled Exception: MissingPluginException(No implementation found for method setMinWindowSize on channel desktop_window) #0 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:154:7) #1 DesktopWindow.setMinWindowSize (package:desktop_window/desktop_window.dart:25:12) #2 main (package:war_simulator_editor/main.dart:33:3)

- Use `g_autoptr` for `fl_value_new_xxx()` (`g_malloc0()`). - Replace `fl_value_lookup()` + `fl_value_new_string()` with `fl_value_lookup_string()` that takes care of allocating and releasing the string.

On macOS, it doesn't work when the window is inactive. Resolve it by using first window when mainWindow is nil.

In Linux on-screen keyboard enabled, and desktop-window set to fullscreen, the onscreen keyboard open and close automatically when I click a text filed, it's stay in normal screen. normal mode...