Composable Function

RemoteColumn

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

RemoteColumn

Source set: Android
@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.

Last updated: