Skip to content

Instantly share code, notes, and snippets.

@gabrielbmoro
Created March 10, 2023 18:46
Show Gist options
  • Save gabrielbmoro/407389d77e4ff13d05e52d8b061dc340 to your computer and use it in GitHub Desktop.
Save gabrielbmoro/407389d77e4ff13d05e52d8b061dc340 to your computer and use it in GitHub Desktop.
AccessibilityArticle8
@Composable
fun QuizReport(
rightAnswersValue: String,
totalQuestionsValue: String,
modifier: Modifier = Modifier
) {
val description = stringResource(
R.string.score_report_content_description,
totalQuestionsValue,
rightAnswersValue
)
ConstraintLayout(
modifier.clearAndSetSemantics {
contentDescription = description
}
) {
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment