🔰view hierarchy
// case: container view
HStack { // parent
Text("Hello") // child
Color.red // child
}// case: view modifiers
view // child
.padding() // parent
.frame(width: 100, height: 100) // grand parent
.border(.black) // grand grand parent// container view + view modifiers
HStack { // parent
Text("Hello") // child
Color.red // child
}
.padding() // parent
.frame(width: 100, height: 100) // grand parent
.border(.black) // grand grand parentLast updated