11

When running the following code in iOS15, the color of a URL or email address within the contents uses the accent color instead of the foreground color. How can I override that?

Text("Send a message to john@email.com to request support")
    .foregroundColor(.blue)

How Text view is rendered in iOS15

Ecil
  • 1,009
  • 1
  • 13
  • 28

1 Answers1

38

You can use Text(verbatim:) to render the string as-is, and not automatically create a link from the email.

Text(verbatim: "Send a message to john@email.com to request support")
    .foregroundColor(.blue)

Result:

Text is all blue

You can also set your own accent color, if you want.

Text("Send a message to john@email.com to request support")
    .accentColor(.green)

Result:

Email is green, rest of text is black

aheze
  • 24,434
  • 8
  • 68
  • 125