I have a `LazyVerticalGrid` inside a `Column`, I w...
# compose
a
I have a
LazyVerticalGrid
inside a
Column
, I want to make the whole
Column
scrollable, how can I do that? I tried using
Modifier.nestedScroll
but not sure how it works
Copy code
Column {
    SomeButtons()
    SomeImages()
    LazyVerticalGrid()
}
c
Try:
Copy code
Column(modifier = Modifier.verticalScroll(rememberScrollState()) { ... }
Edit: never mind, I'm guessing that doesn't do what you want
t
What if you use LazyColumn with the one item for button and one for the imagem and then the grid under it inside the LazyColumn
1