VStack
├── Text (Title)
├── VStack (Array Section)
│ ├── Text (Array Label)
│ ├── ForEach (Array Items)
│ └── Button (Add to Array)
├── VStack (Dictionary Section)
│ ├── Text (Dictionary Label)
│ ├── ForEach (Dictionary Items)
│ └── Button (Add to Dictionary)
└── VStack (Set Section)
├── Text (Set Label)
├── ForEach (Set Items)
└── Button (Add to Set)The root VStack stacks all content vertically. The first Text shows the main title. Then three VStacks each show one collection type: a label Text, a list of items using ForEach, and a Button to add new items. This layout visually separates the three collections on the screen.