abbic
03/02/2023, 10:01 AMcurioustechizen
03/02/2023, 10:07 AMColumn
and verticalScroll
modifier.abbic
03/02/2023, 10:34 AMStylianos Gakis
03/02/2023, 1:05 PMSpacer(Modifier.weight(1f)
right above that button like here.
If there is no scrolling happening, the spacer will take up as much space as it can and it will push what’s below further down.
If there’s enough content to make the column scrollable, then weight(1f) has no effect and everything scrolls together.
I hope I did understand your problem correctlyabbic
03/02/2023, 1:08 PMStylianos Gakis
03/02/2023, 1:12 PMcurioustechizen
03/02/2023, 1:28 PMweight(1f)
has no effect if there is scroll happening. This definitely makes more sense for a plain Column (the custom arrangement is still useful for lazy lists and such).