개요버튼을 클릭하면 원하는 URL로 들어갈 수 있는 Link 컴포넌트에 대해 알아볼 예정이다. Codestruct View3: View { var body: some View { VStack { Link(destination: URL(string: "https://www.apple.com/")!, label: { Text("Go To Apple") .bold() .frame(width:280, height: 50) .foregroundColor(.white) .background(Color.black) .cornerRadius(12) }) Form { Link("Privacy Policy", destination: URL(string: "https://daesiker.tistory.com")!) Link..