Skip to content

Instantly share code, notes, and snippets.

@Skyyo
Created October 2, 2022 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Skyyo/0ce87fd11379c14d377cc1d78e9739a8 to your computer and use it in GitHub Desktop.
Save Skyyo/0ce87fd11379c14d377cc1d78e9739a8 to your computer and use it in GitHub Desktop.
perf_snippet_12
@Composable
fun StateReadsInlinedComposablesScreen() {
var count by remember { mutableStateOf(0) }
Column {
Text(text = "count: $count")
Button(onClick = { count++ }) {
Text(text = "count++")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment