A set of tools for your Compose Desktop development delight.
-
Modifier.bindWindowMinimumSize- bind the minimum size of a window to a Composable's "relaxed state".
See the sample for a full example.
Window(onCloseRequest = ::exitApplication) {
App(modifier = Modifier.bindWindowMinimumSize(this))
}Window(onCloseRequest = ::exitApplication) {
WindowMinimumSize(minimumWidth = 600.dp)
// ...
}See instructions here.
WIP