accessibility
Installation
SKILL.md
Android Accessibility
Accessibility is not optional — it's required by law in many markets and checked by the Play Store.
Rule 1: Content descriptions for all interactive elements
// ✅ Every non-text interactive element needs contentDescription
IconButton(onClick = onLike) {
Icon(
imageVector = if (isLiked) Icons.Filled.Favorite else Icons.Outlined.FavoriteBorder,
contentDescription = if (isLiked) "Remove from favorites" else "Add to favorites"
// Describe the ACTION, not the icon name
)
}