-
-
Save skydoves/fda350cca97da25a7e1e14baaa4d0a00 to your computer and use it in GitHub Desktop.
TraceRecomposition
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
| @TraceRecomposition | |
| @Composable | |
| fun ProductCard( | |
| product: Product, | |
| onClick: () -> Unit | |
| ) { | |
| Card(onClick = onClick) { | |
| Text(product.name) | |
| Text("$${product.price}") | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment