-
Notifications
You must be signed in to change notification settings - Fork 0
big carousel
milan jurkulák edited this page May 2, 2024
·
1 revision
//tvlib/org.mjdev.tvlib.ui.components.carousel/BigCarousel
[androidJvm]\
fun BigCarousel(modifier: Modifier = Modifier, items: List<Any?> = listOf(Unit, Unit, Unit), autoScrollDurationMillis: Long = 8000, carouselState: CarouselState = remember(items) { CarouselState() }, onItemSelected: (movie: Any?, fromUser: Boolean) -> Unit? = null, onItemClicked: (movie: Any?) -> Unit? = null, onSwipeUp: (dragAmount: Offset) -> Unit? = null, onSwipeDown: (dragAmount: Offset) -> Unit? = null)