Kwik Carousel
A generic carousel that displays a list of content in a horizontal scrollable view.
Parameters
The modifier to be applied to the carousel (HorizontalPager).
The shape of the carousel.
The index of the item to display first.
Whether to show the page indicators.
The color of the selected page indicator.
The color of the unselected page indicator.
Whether to show the navigation buttons.
Whether to show the counter.
Whether to automatically slide the carousel.
The delay between auto-play slides in milliseconds.
Callback that is invoked when the current page index changes.
Whether the carousel is scrollable by the user.
Optional composable to replace the default previous button.
Optional composable to replace the default next button.
Function that builds the content for each page.
Example usage:
KwikCarousel(
itemCount = 5
){ page ->
// Your content for the specific page
Text("Page $page")
}