I have Column that consists of Text (aligned to t...
# compose
p
I have Column that consists of Text (aligned to the top of the screen) Scrollable Text (placed between the top text and bottom button) Button (aligned to the bottom of the screen) What is the easiest way to implement this? If I just place it in a Column the scrollable text pushes the button below the visibility of the screen.
o
Did you try to constraint the height of the scrollable text with
.weight(1f)
modifier?
👍 1
h
and also make only the scrollable text scrollable
👍 1
p
Works like a charm @Oleksandr Balan ty
👍 1