Is there an easy way to put a vertical grid inside...
# compose
y
Is there an easy way to put a vertical grid inside a
LazyColumn
? Using
LazyVerticalGrid
throws an exception which says I cannot use two scrollable layouts in one direction & I cannot find a non scrollable version of
Grid
to use. I do not want to grid scroll independently, I just want to put a grid inside my
LazyColumn
. I know I can manually implement it using Rows & Columns but I am trying to avoid that especially since my grid is adaptive and the number of items on each row depend on the device.
n
y
Thanks ill take a look