Skip to content

Instantly share code, notes, and snippets.

@arriolac
Created September 21, 2022 12:24
Show Gist options
  • Save arriolac/7b350d60d84ae63c1737ccbb8ab05bbc to your computer and use it in GitHub Desktop.
Save arriolac/7b350d60d84ae63c1737ccbb8ab05bbc to your computer and use it in GitHub Desktop.
// Copyright 2022 Google LLC.
// SPDX-License-Identifier: Apache-2.0
@Composable
fun SingleChoiceQuestion(answers: List<Answer>) {
Column {
answers.forEach { answer ->
SurveyAnswer(answer = answer)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment