Compose Component

ListHeader

A slot based composable for creating a list header item.

ListHeader

Source set: Android

Added in 1.7.0-alpha01

@Composable
public fun ListHeader(
    modifier: Modifier = Modifier,
    backgroundColor: Color = Color.Transparent,
    contentColor: Color = MaterialTheme.colors.onSurfaceVariant,
    content: @Composable RowScope.() -> Unit,
)

Parameters

modifier The modifier for the list header
backgroundColor The background color to apply - typically Color.Transparent
contentColor The color to apply to content
content Slot for displayed header text

Last updated: