Button’s content lambda is a `RowScope`. If you wa...
# compose
a
Button’s content lambda is a
RowScope
. If you wanted to arrange items vertically instead, like below (Icon over text), would you just put a
Column
in `Button`’s content? Seems hacky putting a
Column
in an otherwise empty
Row
s
Yeah, you just do that indeed. I honestly would like the button to just not provide any scope and lay out things in a box to not give you any such things to worry about.
👍 3
z
I was thinking the same, instead Button should not expose any scope.