I can combine two text views like this.
Text("1") + Text("1")
But how can I do something like this?
Text("1") + Text("1").border(Color.red)
I cant simply do this
HStack(spacing: 0) {
Text("1")
Text("1").border(Color.red)
}
because the design will behave differently as seen below
They will behave as 2 separate texts. I want the one on the right to wrap around, so that both Texts looks like a single text.