Column Screen Container
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.
vertical Arrangement
: optional vertical alignment.
horizontal Alignment
: optional horizontal alignment.