Replies: 3 comments 10 replies
-
If you have a use case you can share in which you need to control these properties more directly, we would be open to supporting that. Otherwise, this is the current level of support: The size and position of a window is automatically saved once a user adjusts it, so it will be restored with the same size and position on future startups. For the default size and position for the first startup, it is not recommended to set manually since it is not very cross-platform. However, you can specify a b.Styler(func(s *styles.Style) {
s.Min.Set(units.Em(500))
}) There is also no way to make a window fullscreen by default, since we believe the user should have control over that. If a user makes a window fullscreen, it will remember that for future startups. Also note that we are planning to improve multi-monitor control soon (#997). |
Beta Was this translation helpful? Give feedback.
-
i would love to have full screen window option in multiple monitor settings, for instance, play a video or display chart full screen on secondary monitor. |
Beta Was this translation helpful? Give feedback.
-
One of my application running as Kisok which provide some information it need to full screen |
Beta Was this translation helpful? Give feedback.
-
More specifically, how can one control its size and position on startup? Is there a way to make a window be fullscreen? I saw some mentions about this in the documentation but I could not really find a way to do that (it does not look like it would be through Body).
Beta Was this translation helpful? Give feedback.
All reactions