performance
Installation
SKILL.md
Android Performance
Rule 1: Compose stability — stop unnecessary recomposition
// ✅ @Stable for classes Compose can't infer stability
@Stable
class ItemState(
val id: String,
val title: String,
var isExpanded: Boolean = false // mutable but tracked
)