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 } }