I am using a Switch Composable for which I want to give a custom background for selected and unselected state. How can I do that?
var switchState by remember { mutableStateOf(false) }
Switch(
checked = switchState,
onCheckedChange = { switchState = !switchState }
)