Any way to get ```Column { Text Spacer(weight(1...
# compose
c
Any way to get
Copy code
Column {
 Text
 Spacer(weight(1f)) <=== always show a spacer unless text is too big, then scroll
 Button()
}
to always show the spacer UNLESS the text is too long/font size is too big? So if it's too large then it should scroll. BoxWithConstraints was the only solution I found, but I know BWC is typically "frowned" upon.
s
try Arrangement.spaceBetween() on the column?
a
Does
fillMaxHeight()
on the column
Column
before the
verticalScroll()
not work?
c
Hm. Both of those work and now I feel really dumb. lol
I swear i tried this earlier today and this didn't work (talking about Alex's comment specifically). hot dang.
hm. codex reports this as a critical issue because of weight in a scrollable Column. Hm. who to believe. I'm going to side with Alex. lol