Created
October 2, 2022 15:25
-
-
Save Skyyo/de44d33f08bc37dc732ebf6794bbfbbb to your computer and use it in GitHub Desktop.
perf_snippet_14
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 StateReadsInlinedComposablesSolution2Screen() { | |
var count by remember { mutableStateOf(0) } | |
Column { | |
TextWrapper(provideCount = { count }) | |
Button(onClick = { count++ }) { | |
Text(text = "count++") | |
} | |
} | |
} | |
@Composable | |
fun TextWrapper(provideCount: () -> Int) { | |
Text(text = "Count: ${provideCount()}") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment