Skip to content

Instantly share code, notes, and snippets.

@arriolac
Created September 28, 2022 08:24
Show Gist options
  • Save arriolac/993057153f582d8fa1fe354cbccb080d to your computer and use it in GitHub Desktop.
Save arriolac/993057153f582d8fa1fe354cbccb080d to your computer and use it in GitHub Desktop.
// Copyright 2022 Google LLC.
// SPDX-License-Identifier: Apache-2.0
@Composable
fun SurveyAnswer(answer: Answer) {
Row(
Modifier.fillMaxWidth().padding(16.dp),
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.SpaceBetween
) {
Image(answer.image)
Text(answer.text)
RadioButton(/* ... */)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment