Hey guys, I was fiddling around with compose layou...
# compose
f
Hey guys, I was fiddling around with compose layouts(such as
Row
,
Column
,
LazyVerticalGrid
and the accompanist
FlowRow
) trying to achieve something like CSS `minmax` function for columns. Basically I'd like to lay out a list of elements such that they take all the available space, as in visually they always occupy the whole width of the screen, but are still constrained by a min size and a max size. Is there any way to achieve that using Jetpack Compose?
Also, related to this, why is there
Column
and
LazyColumn
but only
LazyVerticalGrid
and not
VerticalGrid
?
This is the layout I would like to achieve, but making it scrollable seems unfeasible because of the nested scrolling limitation