You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import androidx.compose.desktop.Window
|
|
|
|
import androidx.compose.material.Text
|
|
|
|
import androidx.compose.material.Button
|
|
|
|
import androidx.compose.material.MaterialTheme
|
|
|
|
import androidx.compose.runtime.getValue
|
|
|
|
import androidx.compose.runtime.mutableStateOf
|
|
|
|
import androidx.compose.runtime.remember
|
|
|
|
import androidx.compose.runtime.setValue
|
|
|
|
|
|
|
|
fun main() = Window {
|
|
|
|
var text by remember { mutableStateOf("Hello, World!") }
|
|
|
|
|
|
|
|
MaterialTheme {
|
|
|
|
Button(onClick = {
|
|
|
|
text = "Hello, Desktop!"
|
|
|
|
}) {
|
|
|
|
Text(text)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|