Skip to content

Instantly share code, notes, and snippets.

@eevajonnapanula
Created May 21, 2024 14:48
Show Gist options
  • Save eevajonnapanula/9b66e2c16c517e65aa67adc7c552d52e to your computer and use it in GitHub Desktop.
Save eevajonnapanula/9b66e2c16c517e65aa67adc7c552d52e to your computer and use it in GitHub Desktop.
// SettingsScreen.kt
@Composable
fun ColorOption(
option: ColorOptionData,
isCurrentTheme: Boolean,
setColorScheme: (Theme?) -> Unit
) {
...
Row(
modifier = Modifier.selectable(
selected = isCurrentTheme,
role = Role.RadioButton
) {
setColorScheme(option.theme)
},
...
) {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment