Hello! Is there any way to pin a button on the bot...
# compose
v
Hello! Is there any way to pin a button on the bottom of a column but when the column has more content than can fit on the screen make the button be displayed on the end and scrolled with the whole content?
s
Put a
Spacer(Modifier.weight(1f)
in between that and the rest of the content above it. I do exactly this here, where if there’s enough content to make the column scrollable, it simply takes up 0 height.
v
It worked! Thank you! 🙂