init<S, V>(S, tag: V, selection: Binding<V?>, destination: () -> Destination)
Creates a navigation link that presents a destination view when a bound selection variable matches a value you provide, using a text label that the link generates from a title string.
Available when
Label
is Text
and Destination
conforms to View
.init<V>(tag: V, selection: Binding<V?>, destination: () -> Destination, label: () -> Label)
Creates a navigation link that presents the destination view when a bound selection variable equals a given tag value.
init<V>(destinationName : String, tag: V, selection: Binding<V?>, label: () -> Label)
Creates a navigation link that presents a view from a WatchKit storyboard when a bound selection variable matches a value you provide.
Available when
Label
conforms to View
and Destination
is _WKStoryboardContent
.