Expert checklist and prompts for auditing and fixing Android accessibility issues, especially in Jetpack Compose.
Analyze the provided component or screen for the following accessibility aspects.
Image and Icon composables have a meaningful contentDescription?contentDescription = null.MinTouchTargetSize or wrap in Box with appropriate padding if the visual icon is smaller.Modifier.semantics(mergeDescendants = true) for complex items (like a row with text and icon) so they are announced as a single item.stateDescription to describe custom states (e.g., "Selected", "Checked") if standard semantics aren't enough.Modifier.semantics { heading() } to allow screen reader users to jump between sections.