in case of `Column { Text() }` the text is wrapped...
# compose
k
in case of
Column { Text() }
the text is wrapped to the next line but with `Row { Column{ Text() } } a long text is cropped. Is there any way to limit the width of the Text to the size of its container?
seems like
Flexible(1f)
as a modify-er on
Column
solves this issue but the preview does not pick it up 🙂