Is it possible to apply a Blur() to a specific subset of a Text()? The best I can come up with is an HStack() { Text("A") Text("B").blur() Text("C") }
considering Text + Text + Text does not work when .blur() changes "B" from a Text to a View. The issue with my HStack solution is that the individual Text elements will wrap text and not look fluid.
Looks ok with short text.
But looks bad when the text is longer.