I want to change the size of the window of my Kotlin Compose Desktop application so when it launches its 720p instead of the odd square it is by default. How can i do that?
I have tried this and have looked it up to no avail
fun FrameWindowScope.setMinSize() {
window.minimumSize = Dimension(1280, 720)
}
New contributor
Caleb is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.