示例代码:
struct ContentView : View { var body: some View { ZStack(alignment: .center){ Image("beach").clipShape(Circle()) Text("Sea beach") .font(.system(size: 48)) .foregroundColor(.white) Text("Hawaii - USA") .font(.system(size: 14)) .foregroundColor(.white) .offset(x: 0, y: 36) }.padding(10) } }