App Movie Poster
fun AppMoviePoster(imageSource: AppImageSource, rating: Double? = null, modifier: Modifier = Modifier, width: Dp = 110.dp, height: Dp = 150.dp, primaryInfo: String? = null, secondaryInfo: String? = null)
A component to display a movie poster with specialized overlays. It handles the image rendering and displays a rating badge in the top-right corner. Additionally, it can display informational tags at the bottom.
Parameters
image Source
The AppImageSource to load the poster image.
rating
The numeric rating to be displayed in a AppBadgeType.RATING badge.
modifier
Modifier to be applied to the poster container.
width
The width of the poster. Defaults to 110.dp.
height
The height of the poster. Defaults to 150.dp.
primary Info
Optional primary status text (e.g., "New"). Shown as a badge at the bottom.
secondary Info
Optional secondary status text (e.g., "Trending"). Shown below primaryInfo.