I have a few a list of items, I want to attach a footer to it. The content of items is different from footer and that is why they have different heights.
LazyRow() {
items(myList) { item ->
RowItem(item)
}
item {
Footer()
}
}
I want the footer to be of the same height as other items.
