What would be a proper way to set a minimum size f...
# compose-desktop
m
What would be a proper way to set a minimum size for a
Window
? I want my window to be resizeable, but squishing it into a tiny square is not useful, so I'd like to set a reasonable minimum. If the minimum size could just be based on minimum measurements of the Compose layout, that would be even greater.
Found it, you can access
window.minimumSize
and set it there on the AWT window.
thank you color 1