Hello chat, what combination of compose views would you use to create a swift style LazyVGrid in the sense that it can have fixed num of columns but different width modifiers in each column. For example in LazyVGrid you can do fixed 3 columns where 2 are flexible (same weight) and one with fixed width or wrap width.
Alexandros Boutakidis
06/28/2021, 4:06 PM
LazyGrid seems to not offer such commodities
a
Albert Chang
06/29/2021, 1:12 AM
It's easy to implement using
LazyColumn
and
Modifier.weight()
.
a
Alexandros Boutakidis
06/29/2021, 5:07 PM
Not that easy apparently, I ended up implementing the whole logic behind it