I have a composable with `Text()` and the parent ...
# compose
d
I have a composable with
Text()
and the parent size is size of the text. but if I add a
LazyVerticalGrid
(fixed cells) then size of its parent behaves as
fillMaxWidth()
even if
LazyVerticalGrid
contains only single
Text
without any modifiers. Can I somehow instruct
LazyVerticalGrid
to not stretch horizontally and "wrap content" instead?