AppMovieCarousel

fun AppMovieCarousel(modifier: Modifier = Modifier, title: String, items: List<MovieItem>, onMovieClick: (MovieItem) -> Unit = {})

A specialized carousel for displaying MovieItems.

Parameters

modifier

The Modifier to be applied to the carousel container.

title

The title of the carousel section.

items

The list of MovieItem to be displayed.

onMovieClick

Callback triggered when a movie item is clicked.