Why the does this display "Hello1" and not "HelloWorld"? Then if I put a space between them it works as expected.
(macOS 12.0.1)
struct ContentView: View {
var body: some View {
let t1 = Text("Hello").foregroundColor(.red)
let t2 = Text("World").foregroundColor(.blue)
Text("\(t1)\(t2)")
.padding()
.frame(width: 200)
}
}