ScrollableColumn

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

Author: @Jeluchu

This component is customized so that the effect shown at the end of the lists is not shown in versions lower than Android 12. You can use ListNotOverScroll to avoid that effect in any list or scroll you have in your application

With this component you can include content directly in a column that is vertically scrollable

Parameters

modifier

modifier that will be used to change the color, size...

verticalArrangement

The vertical arrangement of the layout's children. This allows adding a spacing between items and specifying the arrangement of the items when we have not enough of them to fill the whole minimum size

horizontalAlignment

the horizontal alignment applied to the items

state

the state object to be used to control or observe the column scroll's state

content

items to be displayed within the column