In SwiftUI when a horizontal array of Circle
s are made like this:
HStack(spacing : 4) {
Foreach(0..<5) { index in
Circle()
}
}
How the (horizontal) spacing value of 4
is applied? Is it between the centre of two circles or from their edges instead?