It seems that it's impossible to easily give all i...
# compose
j
It seems that it's impossible to easily give all items in a row the height of the tallest items in a
LazyVerticalGrid
. This makes it really hard to use it 😞 Is everyone else falling back to
Row
s with
IntrinsicSize.Max
or did you find another tolerable solution to this?
e
Its conceptually not possible based on how lazy layouts work. You either fix the height or use a non lazy layout
👍 1
s
How can your first item know the height of the 1000th item if you don't render them all?
j
That totally makes sense. Thanks