Offset
extension Element {
func offset(x: CGFloat = 0, y: CGFloat = 0) -> Element
}
Offsets the child element by the specified amount.
Examples
var body: Layout {
HStack {
faceView1
faceView2
.offset(y: -30)
faceView3
faceView4
faceView5
}
}