FloatingItemHeadingAndContent

fun FloatingItemHeadingAndContent(heading: String, content: @Composable () -> Unit, modifier: Modifier = Modifier, image: @Composable () -> Unit = {}, trailingContent: @Composable () -> Unit = {})

An item showing a heading in bold with content below it.

Parameters

heading

will be shown in bold at the top.

content

will be shown below the heading.

modifier
image

optional image, shown to the left of the text.

trailingContent

optional trailing content.