https://kotlinlang.org logo
#compose
Title
# compose
a

allan.conda

05/29/2020, 9:25 AM
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

Kazemihabib1996

05/29/2020, 9:30 AM
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

allan.conda

05/29/2020, 9:34 AM
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.