Is it possible in KOTLIN or by remember in Jetpack Compose to change the value of a variable after some seconds?
For example, I have a variable var currentResult1 = remember { mutableStateOf(true) }
.
How can I say that after my activity opens, this currentResult1.value change to false after 1 second?