How can the Z-index be reflected in the element tree?

Hi. I’m working through a course on packaging bubble for mobile and in the instructor’s video of his bubble screen the elements (all views in a single-page app) in the elements tree clearly rearrange whenever he uses ‘Arrange’ to move individual elements to the front or to the back. This doesn’t not happen when I do it, the elements remain listed in the order that I created them. I’ve seen a few older posts on this topic that said this was not possible. Clearly it is. How do I do this?

The order of elements in the element tree reflects the Z-index, only when the parent container layout type is ‘fixed’ or ‘align to parent’…

For ‘column’ and ‘row’ container layouts, the element tree shows the order of elements within the column/row.

1 Like

Perfect. Thank you.