Open
Description
Groups in ZStacks should lay out their children along the z axis but will default to the orientation of the ZStack's container instead.
Fixing this will involve:
- Adding the z axis to the
Orientation
enum. - Updating
Group
to support this new orientation. - Updating
ZStack
's implementation of theView
protocol to just lean onGroup
likeVStack
andHStack
already do.
Thanks @bbrk24 for discovering this.