Is there any way to set min window size?
# compose-desktop
a
Is there any way to set min window size?
s
I think you can do it by accessing the
ComposeWindow
object which extends
JFrame
and then set a minimum size on it
Copy code
Window(
  onCloseRequest = { exitProcess(0) }
) {
  window.minimumSize = Dimension(800, 600)
  …
  content
  …
}
❤️ 1
a
Thank you
1279 Views