Skip to content

Instantly share code, notes, and snippets.

@emma-k-alexandra
Created December 7, 2020 04:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emma-k-alexandra/61702a270ddce11ca2dd72878e6ca9a9 to your computer and use it in GitHub Desktop.
Save emma-k-alexandra/61702a270ddce11ca2dd72878e6ca9a9 to your computer and use it in GitHub Desktop.
struct LinkAndText: View {
var body: some View {
HStack {
Text("Hello world, my name is ")
Link("Emma", destination: URL(string: "https://emma.sh")!)
Text(". Sometimes I write Swift code.")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment