Can I make a composable function that will show up...
# compose
g
Can I make a composable function that will show up some content on top of its children?
f
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
Great, thanks!