ScrollingVertical

fun ScrollingVertical(    modifier: Modifier = Modifier,     shape: Shape = RectangleShape,     deceleration: Float = 15.0f,     direction: VerticalDirection = VerticalDirection.TopToBottom,     content: @Composable BoxScope.() -> Unit)

Components that flow vertically

Parameters

modifier

The modifier to be applied to the layout.

shape

How a component clips when it goes off screen.

deceleration

Reduce component movement speed (default 1ms per 1dp)

direction

Component movement direction (top/bottom)

content

The content of the Box.