<h2 id="remoterow-modifier-horizontalarrangement-verticalalignment-content">RemoteRow</h2>

<div class='sourceset sourceset-android'>Android</div>

```kotlin
@RemoteComposable
@Composable
public fun RemoteRow(
    modifier: RemoteModifier = RemoteModifier,
    horizontalArrangement: RemoteArrangement.Horizontal = RemoteArrangement.Start,
    verticalAlignment: RemoteAlignment.Vertical = RemoteAlignment.Top,
    content: @Composable RemoteRowScope.() -> Unit,
)
```

A layout composable that positions its children in a horizontal sequence.

`RemoteRow` allows you to arrange children horizontally and control their `horizontalArrangement`
(spacing) and `verticalAlignment`.

#### Parameters

| | |
| --- | --- |
| modifier | The modifier to be applied to this row. |
| horizontalArrangement | The horizontal arrangement of the children. |
| verticalAlignment | The vertical alignment of the children. |
| content | The content of the row, which has access to [RemoteRowScope](/jetpack-compose/androidx.compose.remote/remote-creation-compose/classes/RemoteRowScope). |