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
)
Installs
9
GitHub Stars
13
First Seen
Apr 19, 2026
performance — piyushverma0/android-agent-skills