You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The window does not set to fullscreen when using the property size: WidgetsBinding.instance.window.physicalSize. It does not adjust to the maximum available width and height.
Below is the code which I am using:
windowManager.ensureInitialized().whenComplete(() {
windowManager.waitUntilReadyToShow(
WindowOptions(
size: WidgetsBinding.instance.window.physicalSize,
title: "Test",
), () async {
await windowManager.setResizable(false);
await windowManager.show();
await windowManager.focus();
});
});
The output is like:
The text was updated successfully, but these errors were encountered:
The window does not set to fullscreen when using the property size: WidgetsBinding.instance.window.physicalSize. It does not adjust to the maximum available width and height.
Below is the code which I am using:
windowManager.ensureInitialized().whenComplete(() {
windowManager.waitUntilReadyToShow(
WindowOptions(
size: WidgetsBinding.instance.window.physicalSize,
title: "Test",
), () async {
await windowManager.setResizable(false);
await windowManager.show();
await windowManager.focus();
});
});
The output is like:
The text was updated successfully, but these errors were encountered: