alorma
05/21/2021, 1:35 PMLazyColumn
scrolls?
Should I set all the content inside a LazyColumn
?taponidhi
05/21/2021, 2:59 PMnglauber
05/23/2021, 3:57 AMitem
in your LazyColumn
.
LazyColumn {
item {
YourTopComposable()
}
items(yourList) {
YourListItem()
}
}
taponidhi
05/23/2021, 4:03 AM