-
Notifications
You must be signed in to change notification settings - Fork 0
card content
milan jurkulák edited this page May 2, 2024
·
1 revision
//tvlib/org.mjdev.tvlib.ui.components.card/CardContent
[androidJvm]\
fun CardContent(modifier: Modifier = Modifier, subtitleAlpha: Float = 0.6f, descriptionAlpha: Float = 0.8f, title: @Composable() -> Unit = { AutoHideEmptyText("title") }, subtitle: @Composable() -> Unit = { Box(Modifier.graphicsLayer { alpha = subtitleAlpha }) { AutoHideEmptyText("subtitle") } }, description: @Composable() -> Unit = { Box(Modifier.graphicsLayer { alpha = descriptionAlpha }) { AutoHideEmptyText("description") } })