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

galex

07/27/2020, 4:12 PM
Can I make a composable function that will show up some content on top of its children?
f

Fudge

07/27/2020, 4:12 PM
You can use a
Stack
which layers components on top of each other
Copy code
Stack {
   Box1()
   Box2()
}
Box2 will appear on top of Box1
g

galex

07/27/2020, 4:14 PM
Great, thanks!
2 Views