I have ```LazyVerticalGrid( colum...
# compose
c
I have
Copy code
LazyVerticalGrid(
                columns = GridCells.Fixed(2),
                horizontalArrangement = Arrangement.spacedBy(8.dp),
                verticalArrangement = Arrangement.spacedBy(8.dp),
                modifier = Modifier.fillMaxSize()
            ) {
...
and everything works great except I have two items types... and both are slightly different heights. Is there a way to do an IntrinsicSize thing here to make sure that both items in a Row are the same size?
Slightly off height wise. I of course don't want to set a hardcoded size as these have text in them so they should grow to accomadate that.
My only other idea is to ditch the LazyVerticalGrid, because I'll probably only have like twenty items in here... max.
z
Could you just use a LazyColumn with a Row in each item?
c
I guess I could do that to.
verticalgrid seemed more appropriate... but that can work too