Created
December 23, 2024 03:55
-
-
Save devrath/c04fdbc841f53965ca70329e17d0b847 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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