List of items
A fixed-height LazyColumn of ListItems separated by dividers.
LazyColumn(modifier = Modifier.height(220.dp)) {
items(rows) { row ->
ListItem(
headlineContent = { Text(row) },
supportingContent = { Text("Supporting text") }
)
HorizontalDivider()
}
}