What is the use of Link in SwiftUi?

- : Swift UI :- Link in SwiftUI :- Open the link which you want to open in browser ex: www.google.com Code Example : Link(“Go to google”, destination: URL(string:“ www.google.com ”)) Link("Go to Google", destination: URL(string: "https://www.google.com")!) .buttonStyle(.borderedProminent) .buttonBorderShape(.capsule) .controlSize(.large) .tint(.green.opacity(1.5)) Link("Go to Apple", destination: URL(string: "https://apple.com")!) .buttonStyle(.plain) .buttonBorderShape(.capsule) ...