I have a LazyColumn that looks like this:
LazyColumn (
verticalArrangement = Arrangement.spacedBy(12.dp)
) {
items(bookList) { book ->
InProgressBookItem(book = book)
}
}
How can I add a line between each item in the list, similar to using an item decoration on the old RecyclerView?
Currently there is no built–in way to add dividers. However, you can just add a
Divider
in theLazyListScope
.Something like:
If you do not want the last item to be followed by a
Divider
, you can add dividers to items according to their indices: