<div class='type'>Composable Component</div>



A Layout to correctly position, size, and add semantics to `SegmentedButton`s in a Row. It
handles overlapping items so that strokes of the item are correctly on top of each other.

<a id='references'></a>



<h2 id="multichoicesegmentedbuttonrow-modifier-space-content">MultiChoiceSegmentedButtonRow</h2>

<div class='sourceset sourceset-common'>Common</div>


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


#### Parameters

| | |
| --- | --- |
| modifier | the `Modifier` to be applied to this row |
| space | the dimension of the overlap between buttons. Should be equal to the stroke width used on the items. |
| content | the content of this Segmented Button Row, typically a sequence of `SegmentedButton`s |