The following code
struct ContentView: View {
var body: some View {
Text("Hello, World!")
.padding()
}
}
But the following code
struct ContentView: View {
var body: some View {
Text("[email protected]")
.padding()
}
}
How can I make "[email protected]" appear formatted like "Hello, World!" (no underline, no blue tint, remove link on click)?