Hello chat, what combination of compose views woul...
# compose
a
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.
LazyGrid seems to not offer such commodities
a
It's easy to implement using
LazyColumn
and
Modifier.weight()
.
a
Not that easy apparently, I ended up implementing the whole logic behind it