SwiftUI horizontal alignment from center to the right
问题 I am trying to align a dynamic collection (ie of varying count) of views to the right of a centered view, without moving the center view from its original, center position. For example, the center view is Text("12") and the views to the right are [Text("+3"), Text("+10"), Text("-1")] so I want the views to the right of 12 be displayed to its right, while 12 is centered horizontally on the screen: | 12 +3 +10 -1 | If I try using an HStack the 12 will move away from center. Is there a view