Scrolling Horizontal
fun ScrollingHorizontal( modifier: Modifier = Modifier, shape: Shape = RectangleShape, deceleration: Float = 15.0f, direction: HorizontalDirection = HorizontalDirection.LeftToRight, content: @Composable BoxScope.() -> Unit)
Content copied to clipboard
Components that flow horizontally
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 (left/right)
content
The content of the Box.