FloatingItemList

fun FloatingItemList(modifier: Modifier = Modifier, title: String? = null, content: @Composable ColumnScope.() -> Unit)

Draws a floating list of items.

The list will be displayed in a list in a floating box with rounded corners.

See FloatingItemHeadingAndText, FloatingItemText, FloatingItemCenteredText for things that are normally used inside this container. For your own composable, simply wrap it in FloatingItemContainer.

Parameters

modifier
title

the title to show above the list or null.

content

the items to show inside the list.