ListItemRadioButton
fun ListItemRadioButton(headlineContent: @Composable () -> Unit, selected: Boolean, onCheckedChange: (Boolean) -> Unit, modifier: Modifier = Modifier, enabled: Boolean = true, overlineContent: @Composable () -> Unit? = null, supportingContent: @Composable () -> Unit? = null, trailingContent: @Composable () -> Unit? = null, colors: ListItemColors = if (enabled) {
ListItemDefaults.colors()
} else {
ListItemDefaults.colors(
headlineColor = MaterialTheme.colorScheme.onSurface.copy(alpha = 0.38f),
leadingIconColor = MaterialTheme.colorScheme.onSurface.copy(alpha = 0.38f),
overlineColor = MaterialTheme.colorScheme.onSurface.copy(alpha = 0.38f),
supportingColor = MaterialTheme.colorScheme.onSurface.copy(alpha = 0.38f),
trailingIconColor = MaterialTheme.colorScheme.onSurface.copy(alpha = 0.38f),
)
}, tonalElevation: Dp = ListItemDefaults.Elevation, shadowElevation: Dp = ListItemDefaults.Elevation)