Skip to content

Instantly share code, notes, and snippets.

@arriolac
Created September 28, 2022 08:27
Show Gist options
  • Save arriolac/a8ddfb2a378e168694266a38a04fc11c to your computer and use it in GitHub Desktop.
Save arriolac/a8ddfb2a378e168694266a38a04fc11c to your computer and use it in GitHub Desktop.
// Copyright 2022 Google LLC.
// SPDX-License-Identifier: Apache-2.0
@Composable
fun SurveyAnswer(answer: Answer) {
Surface(
border = BorderStroke(
1.dp,
MaterialTheme.colorScheme.outline
),
shape = MaterialTheme.shapes.small
) {
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