How do I get a link to work in a list with words before it that’s not hyperlinked?
Text("Telephone: [Privacy Policy](https://example.com)")
except the link needs to allow me to make it dynamic… (variable).website. - For instance
I tried doing this too, but it just makes the whole thing text.
let wb = "[Privacy Policy](https://example.com)"
List {
Text("Telephone:2 " + wb)
I know about what’s below, but don’t know how to combine text with it that’s not hyperlinked
Link("Website: ", destination: URL(string: base.website)!)