Skip to content

Instantly share code, notes, and snippets.

@devrath
Created December 23, 2024 03:55
Show Gist options
  • Save devrath/c04fdbc841f53965ca70329e17d0b847 to your computer and use it in GitHub Desktop.
Save devrath/c04fdbc841f53965ca70329e17d0b847 to your computer and use it in GitHub Desktop.
@Composable
fun StatesWithSideEffectDemoScreen(modifier: Modifier = Modifier) {
var counterState by remember { mutableIntStateOf(0) }
Scaffold(
modifier = Modifier.fillMaxSize()
) { padding ->
Box(
modifier = Modifier.fillMaxSize().padding(padding),
contentAlignment = Alignment.Center
) {
Button(
onClick = {
counterState++
}
) {
counterState++
Text(text = "Current Value -> $counterState")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment