Skip to content

Instantly share code, notes, and snippets.

@arriolac
Created October 3, 2022 23:02
Show Gist options
  • Save arriolac/503939c4682c2f4ac334d419eefbe5a2 to your computer and use it in GitHub Desktop.
Save arriolac/503939c4682c2f4ac334d419eefbe5a2 to your computer and use it in GitHub Desktop.
// Copyright 2022 Google LLC.
// SPDX-License-Identifier: Apache-2.0
@Composable
fun SurveyAnswer() {
Row {
Image(painterResource(id = R.drawable.spark), contentDescription = "")
Text(text = "Spark", color = Color(0xFF448866))
RadioButton(selected = false, onClick = { /* … */ })
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment