radioGroup

fun <Error class: unknown class>.radioGroup(items: List<RadioListItemType>, initialSelected: RadioListItemType? = null, verticalArrangement: <Error class: unknown class> = Arrangement.Top, horizontalAlignment: <Error class: unknown class> = Alignment.Start, contentPadding: <Error class: unknown class> = PaddingValues(), onSelectionChanged: (RadioListItemType, RadioListItemResult?) -> Unit)

Extension function for LazyListScope that adds a RadioGroup to a lazy list.

Parameters

items

The list of RadioListItemType items to be displayed in the radio group.

initialSelected

The initially selected radio item, which is optional.

verticalArrangement

The vertical arrangement of the items in the column.

horizontalAlignment

The horizontal alignment of the items in the column.

contentPadding

Padding to be applied around the content.

onSelectionChanged

A callback triggered when the selection changes. It provides the selected item and the RadioListItemResult result.


fun <T> <Error class: unknown class>.radioGroup(items: List<T>, initialSelected: T? = null, itemTypeFor: (T) -> RadioListItemType, verticalArrangement: <Error class: unknown class> = Arrangement.Top, horizontalAlignment: <Error class: unknown class> = Alignment.Start, contentPadding: <Error class: unknown class> = PaddingValues(), onSelectionChanged: (T, RadioListItemResult.Finalized) -> Unit)

Extension function for LazyListScope that adds a generic RadioGroup to a lazy list.

Parameters

items

The list of generic items to be mapped to RadioListItemType and displayed in the radio group.

initialSelected

The initially selected item, which is optional.

itemTypeFor

A function that maps the generic item to a RadioListItemType.

verticalArrangement

The vertical arrangement of the items in the column.

horizontalAlignment

The horizontal alignment of the items in the column.

contentPadding

Padding to be applied around the content.

onSelectionChanged

A callback triggered when the selection changes. It provides the selected item and the RadioListItemResult.Finalized result.