I recently started using SwiftUI. Today, I’ve come across the oddest phenomenon. When I display simple Text ending in a colon, that colon at the end displays lower than all of the other characters, including any other colons in the text. Is this normal, expected behavior in SwiftUI? Is there any way to prohibit this from happening?
var body: some View {
Text("8:8:8:")
Text("8:8:8:8")
}