Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SeongUgJung/174bcd177711d913f6d9ce055c8068f6 to your computer and use it in GitHub Desktop.
Save SeongUgJung/174bcd177711d913f6d9ce055c8068f6 to your computer and use it in GitHub Desktop.
sample.kt
@Model
data class TitleState(var title: String)
@Compose
fun Text() {
val title = TitleState("hello")
+state { title }
Text(text=title.text)
updateAfter10Seconds { title.title = "hello2" }
}
@Compose
fun Text() {
var title = "hello"
Text(text=title)
updateAfter10Seconds { title = "hello2" }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment