rememberScalingLazyListState
Composable Function
Android
@Composable
public fun rememberScalingLazyListState(
initialCenterItemIndex: Int = 1,
initialCenterItemScrollOffset: Int = 0,
): ScalingLazyListState
Creates a ScalingLazyListState
that is remembered across compositions.
Parameters
initialCenterItemIndex | the initial value for ScalingLazyListState.centerItemIndex , defaults to 1. This will place the 2nd list item (index == 1) in the center of the viewport and the first item (index == 0) before it. |
initialCenterItemScrollOffset | the initial value for ScalingLazyListState.centerItemScrollOffset in pixels |