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
Stylianos Gakis
05/09/2023, 8:57 AM
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.