Damy Wise
Damy Wise

Windows 10. for comparison 
Example app  
Can you give a minimum reproducible code?
_*These are workaround, not fixes_ ## For hiding the native window border when going to full screen You can call ```dart await windowManager.hide(); ``` before calling ```dart windowManager.setFullScreen(true); ``` ##...
I don't, sorry about that. Maybe use ```dart await Future.delayed(const Duration(milliseconds: 200)); ``` before calling the `setBounds` functions, but after `setFullScreen(false)` so the resize happens after the window is truly...
I found and tested [this](https://stackoverflow.com/a/70740716) for windows a few weeks ago. Works great. Hopefully will be in window_manager in the future.
We do have [Char](https://api.dart.dev/stable/2.18.2/dart-ffi/Char-class.html) and [many ](https://api.dart.dev/stable/2.18.2/dart-ffi/dart-ffi-library.html), [other](https://api.dart.dev/stable/2.18.2/dart-typed_data/dart-typed_data-library.html)
What problem have you encountered because of that?
Another alternative is to hide the app until it's fully started/loaded and then change the size before showing it.