Is there a way for a child composable’s zIndex to override its parent composable ? ```Box(){ ...
s
Is there a way for a child composable’s zIndex to override its parent composable ?
Copy code
Box(){
   
   ParentComposable(){
        
      ChildComposable()
   }

   ParentComposable2(){

   }

}
I want
ChildComposable()
to be at the top of the `Box()`(above
ParentComposable2()
). any way to do it?
s
Call them the other way around, first
ParentComposable2
and under that
ParentComposable
l
zIndex
only affects `Layout`s on the same level, so you can't do this in the ChildComposable.