Title
a

Akram Bensalem

10/04/2021, 8:35 PM
Is there any way to set min window size?
s

Sebastian Kürten

10/05/2021, 8:09 AM
I think you can do it by accessing the
ComposeWindow
object which extends
JFrame
and then set a minimum size on it
Window(
  onCloseRequest = { exitProcess(0) }
) {
  window.minimumSize = Dimension(800, 600)
  …
  content
  …
}
❤️ 1
a

Akram Bensalem

10/05/2021, 6:12 PM
Thank you