Any idea why the `FlexColumn` compose the 2 `Text`...
# compose
l
Any idea why the
FlexColumn
compose the 2
Text
in a row instead of a column?
Using
Column
instead of
FlexColumn
works
l
sounds like it could be a bug, but IIRC FlexColumn is going away and there will just be Column
👍 2
l
Same for
FlexRow
I guess then, going away 🙂
l
yep, i believe Row/Column will encompass these use cases
a
Looks like the original code from this thread shouldn't have compiled, the body of FlexColumn isn't composable and it was missing the expanded/etc. wrappers around the Texts, so it looks like it emitted into the parent row instead
l
Oh so I was missing a `inflexible`/`expanded` inside the
FlexColumn
?
a
I think so, yeah
l
Yep, wrapping the 2 `Text`s worked
Thanks