You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MaterialTheme(
colorScheme = rememberDynamicColorScheme(
seedColor = Color.Blue, // can be any color
isDark = true,
isAmoled = false,
contrastLevel = com.materialkolor.Contrast.High.value // if contrast > 0 then Icon color is not fit for dark theme
)
) {
Switch(
checked = true,
onCheckedChange = {},
thumbContent = {
Icon(
imageVector = Icons.Outlined.Settings,
contentDescription = null
)
}
)
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: