Damy Wise
Damy Wise
Here you go ```dart import 'package:fluent_ui/fluent_ui.dart'; void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return FluentApp(...
Okay apparently it's the same with Windows 10 VM for some reason so the problem is probably the VM?
https://github.com/alexmercerind/flutter_acrylic has a new feature:`Window.addToolbar` and `Window.setToolbarStyle` which should eliminate the need for this temporary fix. https://github.com/alexmercerind/flutter_acrylic/issues/43
However, we also need to execute `Window.removeToolbar()` inside `onWindowEnterFullScreen` and `Window.addToolbar()` inside `onWindowLeaveFullscreen` Note that currently, the function `onWindowEnterFullScreen` uses `windowDidEnterFullScreen` instead of `windowWillEnterFullScreen`, which is what I used in...
Oh yeah please don't do that anymore. Use `macos_window_utils` instead
@luizv You don't even need any plugin for that. You can modify the `macos/Runner/MainFlutterWindow.swift` file as mentioned here in the `macos_ui`documentation: https://github.com/macosui/macos_ui#modern-window-look. However, I recommend using the `macos_window_utils` package for...
I have the same issue, has anyone found the fix to this? Logs: ```sh [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: MissingPluginException(No implementation found for method image on channel pasteboard) #0 MethodChannel._invokeMethod (package:flutter/src/services/platform_channel.dart:313:7) #1...
~I had this exact issue except for the top bar. Basically when the window is maximized, it doesn't leave any gap for the taskbar side. Here's how I fixed it...
@roman-yepishev If this is only called once ever, you can put that here https://github.com/leanflutter/window_manager/blob/ef786b1574455ca141cea899ca2db788731163d4/windows/window_manager.cpp#L208-L211 and if you want, also enable/disable it when going to/from fullscreen here https://github.com/leanflutter/window_manager/blob/ef786b1574455ca141cea899ca2db788731163d4/windows/window_manager.cpp#L572-L617
Just some info: This is now a `RUNTIME ERROR: invalid memory access ` https://vosca.dev/p/2276f28ae1