JchuScrollableColumn

fun JchuScrollableColumn(modifier: Modifier = Modifier, verticalArrangement: Arrangement.Vertical = Arrangement.Top, horizontalAlignment: Alignment.Horizontal = Alignment.Start, state: ScrollState = rememberScrollState(), content: @Composable ColumnScope.() -> Unit)

A vertically scrollable column that suppresses the legacy overscroll effect below Android 12.

The content keeps its ColumnScope, so children can use column-specific modifiers such as weight and align.

Parameters

modifier

modifier applied before the component fills the available size and scrolls.

verticalArrangement

vertical arrangement of the column's children.

horizontalAlignment

horizontal alignment of the column's children.

state

state used to control or observe the scroll position.

content

content displayed inside the column.