App List
fun AppList(modifier: Modifier = Modifier, listState: LazyListState = rememberLazyListState(), collapsibleContent: @Composable () -> Unit? = null, content: LazyListScope.() -> Unit)
A custom LazyColumn that supports an optional collapsible header. The header hides when scrolling down and shows when scrolling up or reaching the top.
Parameters
modifier
The Modifier to be applied to the list.
collapsible Content
Optional composable for the header that can be collapsed.
content
The content of the LazyColumn.