Package-level declarations

Types

Link copied to clipboard
data class KwikRadioItem<T>(val label: String, val value: T) : Serializable

Functions

Link copied to clipboard
fun KwikRadioButton(text: String, selected: Boolean, onClick: (Boolean) -> Unit)

RadioButton composable that uses KwikText.BodyText for the text

Link copied to clipboard
fun <T> ColumnScope.KwikRadioButtonGroup(options: List<KwikRadioItem<T>>, initialSelectedValue: T? = null, onOptionSelected: (T) -> Unit)

A radio button group component that allows users to select one option from a list of options.