ToggleItem
fun ToggleItem(modifier: <Error class: unknown class> = Modifier, text: String, isChecked: Boolean, onCheckedChange: (Boolean) -> Unit)
A themed toggle (switch) with accompanying text
, according to the AnsaTheme established.
Parameters
modifier
The modifier to be applied to the toggle.
text
The label to prefix the toggle with
isChecked
Whether or not the toggle is checked.
onCheckedChange
callback to be invoked when the Toggle is being clicked, therefore the change of checked state is requested.