VStack
├── Text (Title)
├── HStack
│ ├── VStack (iPhone)
│ │ ├── Image (iPhone Icon)
│ │ └── Text (iPhone Label)
│ ├── VStack (iPad)
│ │ ├── Image (iPad Icon)
│ │ └── Text (iPad Label)
│ └── VStack (Apple Watch)
│ ├── Image (Watch Icon)
│ └── Text (Watch Label)
The main vertical stack (VStack) holds a title text at the top and a horizontal stack (HStack) below it. The HStack contains three vertical stacks (VStacks), each representing one device: iPhone, iPad, and Apple Watch. Each device VStack has an icon image on top and a label text below it. This layout visually groups the devices side by side under the main title.