<h2 id="remotecolumn-modifier-verticalarrangement-horizontalalignment-content">RemoteColumn</h2>

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

```kotlin
@RemoteComposable
@Composable
public fun RemoteColumn(
    modifier: RemoteModifier = RemoteModifier,
    verticalArrangement: RemoteArrangement.Vertical = RemoteArrangement.Top,
    horizontalAlignment: RemoteAlignment.Horizontal = RemoteAlignment.Start,
    content: @Composable RemoteColumnScope.() -> Unit,
)
```

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

`RemoteColumn` allows you to arrange children vertically and control their `verticalArrangement`
(spacing) and `horizontalAlignment`.

#### Parameters

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