ci/templates/desktop-template/src/main/kotlin/main.kt [15:25]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - fun App() { var text by remember { mutableStateOf("Hello, World!") } MaterialTheme { Button(onClick = { text = "Hello, Desktop!" }) { Text(text) } } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - experimental/build_from_cli/src/main/kotlin/main.kt [15:25]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - fun App() { var text by remember { mutableStateOf("Hello, World!") } MaterialTheme { Button(onClick = { text = "Hello, Desktop!" }) { Text(text) } } } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -