I have the folowing Text() that takes markdown to show a link
Text(.init("[Link Example](https://www.google.es/)"))

Is there a way of changing the default color set to the link?
It is possible to use accent color, like
Text(.init("[Link Example](https://www.google.es/)"))
.accentColor(.red)
You can achieve that with .tint(_:) as accentColor(_:) will soon be deprecated according to the documentation.
Text("[Link Example](https://www.google.es/)")
.tint(Color.red)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With