Damy Wise

Results 71 comments of Damy Wise

![image](https://user-images.githubusercontent.com/25608913/161993592-5de6447d-5a0d-41bc-9299-85674763486b.png)

Windows 10. for comparison ![image](https://user-images.githubusercontent.com/25608913/161994009-a02c810e-fb39-43b0-ba19-54a8576c03ff.png)

Example app ![image](https://user-images.githubusercontent.com/25608913/162389660-a74e0eea-6fc4-462c-9108-c3a5bbcbb4d6.png) ![image](https://user-images.githubusercontent.com/25608913/162389672-c25cc3c2-92d6-45d8-8074-71b741b1173b.png)

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.