FloatingItemHeadingAndContent
fun FloatingItemHeadingAndContent(heading: String, content: @Composable () -> Unit, modifier: Modifier = Modifier, showChevron: Boolean = false, 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
a Modifier.
showChevron
whether to show a right chevron icon on the right side.
image
optional image, shown to the left of the text.
trailingContent
optional trailing content.