Shivam Dhuria
02/02/2023, 8:49 AMBox(){
ParentComposable(){
ChildComposable()
}
ParentComposable2(){
}
}
I want ChildComposable()
to be at the top of the `Box()`(above ParentComposable2()
). any way to do it?Stylianos Gakis
02/02/2023, 11:36 AMParentComposable2
and under that ParentComposable
Loney Chou
02/02/2023, 4:04 PMzIndex
only affects `Layout`s on the same level, so you can't do this in the ChildComposable.