RemoteRow
Android
@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. |