RadioGroup

fun RadioGroup(modifier: <Error class: unknown class> = Modifier, 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: (Int, RadioListItemResult.Finalized) -> Unit)

A composable function that renders a group of radio buttons.

Parameters

modifier

The modifier to be applied to the radio group.

items

The list of RadioListItemType items to be displayed in the 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 index of the selected item and the RadioListItemResult.Finalized result.