demo

1.示例

HStack(alignment: .firstTextBaseline) {
    Text("Current Score:")
        .font(.headline)
        .fontWeight(.semibold)
    
    Text("\(flagGame.currentScore)")
        .font(.title)
        .fontWeight(.bold)
}
.foregroundColor(.yellow)

使用alignment: .firstTextBaseline这个参数,如果不写,默认是两个Text垂直居中对齐