-
-
Notifications
You must be signed in to change notification settings - Fork 230
The fullscreen/unfullscreen moment will have windows' native window border #211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
*These are workaround, not fixes For hiding the native window border when going to full screenYou can call await windowManager.hide(); before calling windowManager.setFullScreen(true); For the few pixels at the bottomUse this: await windowManager.setBounds((await windowManager.getBounds()).inflate(1));
await windowManager.setBounds((await windowManager.getBounds()).inflate(-1)); after await windowManager.setFullScreen(false); As for hiding the native window after zoomed out of full screen, I don't know any workaround for that. I believe the |
Do you have any better suggestions please? |
I don't, sorry about that. await Future.delayed(const Duration(milliseconds: 200)); before calling the |
Same problem on windows10. |
I have the same problem |
2 similar comments
I have the same problem |
I have the same problem |
There is also the issue that when zoomed out full screen, the bottom will persistently expose a few pixels of the native box colour.
Hi author, thank you for the package, how do I fix this please?
The text was updated successfully, but these errors were encountered: