HorizontalBox

@Composable
fun HorizontalBox(modifier: Modifier = Modifier, spacing: Int = 0, homogeneous: Boolean = false, content: @Composable () -> Unit)

A horizontally aligned Box

Parameters

modifier

Compose Modifier for layout and styling.

spacing

The space between the child widgets.

homogeneous

Whether all children are given equal space in the box.

content

The composable content to display.