StylishMultiChoiceSegmentedButtonRow

fun StylishMultiChoiceSegmentedButtonRow(modifier: Modifier = Modifier, space: Dp = SegmentedButtonDefaults.BorderWidth, content: @Composable MultiChoiceSegmentedButtonRowScope.() -> Unit)

A row of multi-select segmented buttons, wrapping the Material 3 MultiChoiceSegmentedButtonRow with Stylish defaults.

Use this when several options can be selected at once. Place StylishSegmentedButton instances inside content; the row overlaps their borders so the group reads as one connected control.

Parameters

modifier

Modifier applied to the MultiChoiceSegmentedButtonRow root.

space

The overlap between adjacent buttons. Defaults to SegmentedButtonDefaults.BorderWidth, matching the stroke width.

content

The buttons, typically a sequence of StylishSegmentedButton in the MultiChoiceSegmentedButtonRowScope.

See also