switch

fun RenderContext.switch(    styling: BasicParams.() -> Unit = {},     value: Store<Boolean>? = null,     baseClass: StyleClass = StyleClass.None,     id: String? = value?.id,     prefix: String = "switchComponent",     build: SwitchComponent.() -> Unit = {}): Label

This component generates a switch. So this component supports the use case to select or deselect an option. As alternative there is also the checkbox.

You can set different kind of properties like the label or different styling aspects like the colors of the background, the label or the checked state. Further more there are configuration functions for accessing the checked state of this box or totally disable it.

Basic usage

val cheeseStore = storeOf(false)
switch(value=cheeseStore) {
label("with extra cheese") // set the label
}

See also

Parameters

styling

a lambda expression for declaring the styling as fritz2's styling DSL

value

a boolean store to handle the state and its changes automatically

baseClass

optional CSS class that should be applied to the element

id

the ID of the element

prefix

the prefix for the generated CSS class resulting in the form `$prefix-$hash`

build

a lambda expression for setting up the component itself. Details in SwitchComponent