---
title: "init(destinationName:isActive:label:)"
framework: swiftui
role: symbol
role_heading: Initializer
path: "swiftui/navigationlink/init(destinationname:isactive:label:)"
---

# init(destinationName:isActive:label:)

Creates a navigation link that presents a view from a WatchKit storyboard when active.

## Declaration

```swift
nonisolated init(destinationName: String, isActive: Binding<Bool>, @ContentBuilder label: () -> Label)
```

## Parameters

- `destinationName`: The storyboard name of a view for the navigation link to present.
- `isActive`: A binding to a Boolean value that indicates whether destination is currently presented.
- `label`: A content builder to produce a label describing the destination to present.

## See Also

### Creating links for WatchKit

- [init(destinationName:tag:selection:label:)](swiftui/navigationlink/init(destinationname:tag:selection:label:).md)
- [init(destinationName:label:)](swiftui/navigationlink/init(destinationname:label:).md)
