kotlin-compose

Installation
SKILL.md

Kotlin Compose Skill

Build modern UIs with Jetpack Compose declarative patterns.

Topics Covered

State Management

@Composable
fun Counter() {
    var count by remember { mutableIntStateOf(0) }
    Button(onClick = { count++ }) { Text("Count: $count") }
}

// Derived state
val isValid by remember { derivedStateOf { email.isNotBlank() && password.length >= 8 } }
Installs
61
GitHub Stars
7
First Seen
Jan 21, 2026
kotlin-compose — pluginagentmarketplace/custom-plugin-kotlin