Compose Component

VerticalPageIndicator

Vertical page indicator for use with VerticalPager, representing the currently active page and the approximate number of pages.

VerticalPageIndicator

Source set: Android

Added in 1.7.0-alpha01

@Composable
public fun VerticalPageIndicator(
    pagerState: PagerState,
    modifier: Modifier = Modifier,
    selectedColor: Color = PageIndicatorDefaults.selectedColor,
    unselectedColor: Color = PageIndicatorDefaults.unselectedColor,
    backgroundColor: Color = PageIndicatorDefaults.backgroundColor,
)

Parameters

pagerState State of the VerticalPager used to control this indicator
modifier Modifier to be applied to the VerticalPageIndicator
selectedColor The color which will be used for a selected indicator item.
unselectedColor The color which will be used for an unselected indicator item.
backgroundColor The color which will be used for an indicator background.

Last updated: