Hi! One question. how can I make all the content s...
# compose
a
Hi! One question. how can I make all the content scroll when the bottom
LazyColumn
scrolls? Should I set all the content inside a
LazyColumn
?
yes black 2
t
Put another LazyColumn wrapper around everything
n
My suggestion is define your top content as an
item
in your
LazyColumn
.
Copy code
LazyColumn {
   item {
       YourTopComposable()
   }
   items(yourList) {
       YourListItem()
   } 
}
👍 1
t
Yeah exactly 👍