How can I achieve FrameLayout behavior from dev12?...
# compose
a
How can I achieve FrameLayout behavior from dev12? Seems
Box
behaves like
Column
now and
Container
is deprecated
i want to overlap an Image photo with another check icon, basically
k
Stack is equal to FrameLayout in compose.
👍 4
Yea, Box is a wrapper around a Column that accepts some modifiers and applies some modifiers to the Column based on those parameters.
a
Awesome! Works perfectly. Thanks, you probably saved me an hour of search. Google search was pointing to those I mentioned above
I see, I just checked the code and it was changed to use Column internally. I came from dev08 which worked there and it broke my component.