ColumnScreenContainer

fun ColumnScreenContainer(title: String? = null, modifier: Modifier = Modifier, verticalArrangement: Arrangement.Vertical = Arrangement.spacedBy(Spacing.Spacing16), horizontalAlignment: Alignment.Horizontal = Alignment.Start, content: @Composable () -> Unit)

DHIS2 ColumnScreenContainer wraps Material 3 Column has a default spacing between items of 16 dp with large top corner radius, white background and vertical scroll enabled

Parameters

title

: is the value of the text to be shown for the row.

content

: controls the content to be shown.

modifier

: optional modifier.

verticalArrangement

: optional vertical alignment.

horizontalAlignment

: optional horizontal alignment.