콘텐츠로 이동
Skip

Link

이 콘텐츠는 아직 번역되지 않았습니다.

Skip support for SwiftUI.Link on Android. Consult the SkipUI module for a complete list of supported SwiftUI.

The following example screens and source code is from SkipUI’s Showcase sample app LinkPlayground.swift

Android screenshot for Link component (light mode) iPhone screenshot for Link component (light mode) iPhone screenshot for Link component (dark mode) Android screenshot for Link component (dark mode)
import SwiftUI
struct LinkPlayground: View {
@Environment(\.openURL) var openURL
let destination = URL(string: "https://skip.dev")!
var body: some View {
ScrollView {
VStack(spacing: 16.0) {
Link(destination: destination) {
Text(".init(destination:label:)")
}
Link(".init(_:destination:)", destination: destination)
Link(destination: destination) {
Image(systemName: "heart.fill")
}
.border(.blue)
Link(".buttonStyle(.bordered)", destination: destination)
.buttonStyle(.bordered)
Link(".foregroundStyle(.red)", destination: destination)
.foregroundStyle(.red)
Link(".tint(.red)", destination: destination)
.tint(.red)
Button("@Environment(\\.openURL)") {
openURL(destination)
}
}
.padding()
}
.toolbar {
PlaygroundSourceLink(file: "LinkPlayground.swift")
}
}
}