Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created November 9, 2025 07:18
Show Gist options
  • Select an option

  • Save skydoves/fda350cca97da25a7e1e14baaa4d0a00 to your computer and use it in GitHub Desktop.

Select an option

Save skydoves/fda350cca97da25a7e1e14baaa4d0a00 to your computer and use it in GitHub Desktop.
TraceRecomposition
@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