Navigation Patterns
Comprehensive guide for SwiftUI navigation architecture on iOS, iPadOS, and macOS. Covers the modern navigation APIs (iOS 16+/macOS 13+) with patterns for common and advanced use cases.
When This Skill Activates
- User is building or reviewing navigation architecture
- User has navigation-related bugs (stack not updating, back button issues, state loss)
- User asks about NavigationStack, NavigationSplitView, TabView, or NavigationPath
- User needs programmatic navigation (push, pop, pop-to-root)
- User is implementing deep linking that connects to navigation
- User asks about navigation transitions or animations
- User is choosing between navigation approaches for their app
Decision Tree
Use this to pick the right navigation container:
What is the app structure?
│
├─ Flat sections (3-5 top-level areas)
│ └─ TabView → see tab-view.md
│
├─ Hierarchical drill-down (list → detail)
│ └─ NavigationStack → see navigation-stack.md
│
├─ Sidebar + content (macOS / iPad)
│ ├─ Two columns → NavigationSplitView → see navigation-split-view.md
│ └─ Three columns → NavigationSplitView → see navigation-split-view.md
│
└─ Combined (tabs with drill-down, sidebar with stacks)
└─ TabView + NavigationStack per tab
OR NavigationSplitView + NavigationStack in detail
Quick Reference
| Pattern |
Container |
Min OS |
Reference |
| Simple drill-down |
NavigationStack |
iOS 16 |
navigation-stack.md |
| Value-based links |
NavigationLink(value:) |
iOS 16 |
navigation-stack.md |
| Programmatic push/pop |
NavigationPath |
iOS 16 |
programmatic-navigation.md |
| Pop to root |
path = NavigationPath() |
iOS 16 |
programmatic-navigation.md |
| State restoration |
NavigationPath.CodableRepresentation |
iOS 16 |
programmatic-navigation.md |
| Two-column layout |
NavigationSplitView |
iOS 16 |
navigation-split-view.md |
| Three-column layout |
NavigationSplitView |
iOS 16 |
navigation-split-view.md |
| Column visibility |
NavigationSplitViewVisibility |
iOS 16 |
navigation-split-view.md |
| Tab bar |
TabView |
iOS 13 |
tab-view.md |
| Customizable tabs |
Tab + TabView |
iOS 18 |
tab-view.md |
| Sidebar tabs (iPad) |
.tabViewStyle(.sidebarAdaptable) |
iOS 18 |
tab-view.md |
| Zoom transition |
.navigationTransition(.zoom) |
iOS 18 |
navigation-transitions.md |
| Custom transitions |
NavigationTransition |
iOS 18 |
navigation-transitions.md |
Navigation Design Rules (WWDC22)
The container APIs above decide how navigation is built; these rules decide whether it's designed right.
Tab bars
- Tabs are top-level content categories, not arbitrary groupings — balance features across tabs so each carries real weight.
- ❌ Never auto-switch tabs in response to an action taken in another tab — confirm in place instead.
Push vs modal
- Push (right-to-left) = traversing the app's hierarchy. Modal (slides up — covering the tab bar is by design) = a self-contained task apart from the hierarchy.
- Modals come in three types: simple task, multi-step task, full-screen content.
- Limit modals presented over modals — each stacked layer buries the user deeper in transient state.
Wayfinding
- Nav bar title = the current location; the back button shows the previous screen's title.
The Three Cookbook Recipes (WWDC22)
Nearly every app is one of these three shapes. Pick one per scene, then lift its navigation state.
- Pushable stack —
NavigationStack(path:) + NavigationLink(value:) + .navigationDestination(for:). Pop-to-root is path.removeAll(); a deep link is just assigning the path.
- Multi-column without stacks —
NavigationSplitView + List(selection:) in each leading column. Value links auto-drive the next column's selection, so programmatic navigation is setting the selection value.
- Split + stack (Photos-style) —
NavigationSplitView with a NavigationStack(path:) inside the detail column: sidebar selection picks the collection, the stack drills into it.
Rules that make the recipes hold up:
- Build with
NavigationSplitView even for iPhone-first apps — it auto-collapses to a single stack in compact width, and iPad/Mac layouts come free.
- Lift navigation state: exactly one bound
path/selection per container. That single source of truth is what makes pop-to-root, deep links, and restoration one-line operations.
State restoration: persist through @SceneStorage("navigation") plus a .task that restores once on appear, then streams subsequent path changes back into storage.
Process
1. Identify Navigation Needs
Read the user's code or requirements to determine:
- App structure (flat, hierarchical, sidebar-based)
- Target platforms (iOS only, iPad adaptive, macOS)
- Whether programmatic navigation is needed
- Deep linking requirements
2. Load Relevant Reference Files
Based on the need, read from this directory:
navigation-stack.md — NavigationStack, NavigationLink, navigationDestination
navigation-split-view.md — Two/three column layouts, column control, adaptive behavior
tab-view.md — TabView, iOS 18 customizable tabs, sidebar mode
programmatic-navigation.md — NavigationPath, state restoration, coordinators, pop-to-root
navigation-transitions.md — Custom push/pop transitions (iOS 18+)
3. Review or Recommend
Apply patterns from the reference files. Check for common mistakes:
4. Cross-Reference
- For deep linking URL handling, see
generators/deep-linking/ skill
- For navigation animations, see
design/animation-patterns/transitions.md
- For macOS sidebar patterns, see
macos/ui-review-tahoe/swiftui-macos.md
References
1---2name: navigation-patterns3description: SwiftUI navigation architecture patterns including NavigationStack, NavigationSplitView, TabView, programmatic navigation, and custom transitions. Use when reviewing or building navigation, fixing navigation bugs, or architecting app flow.4---5
6# Navigation Patterns
7
8Comprehensive guide for SwiftUI navigation architecture on iOS, iPadOS, and macOS. Covers the modern navigation APIs (iOS 16+/macOS 13+) with patterns for common and advanced use cases.
9
10## When This Skill Activates
11
12- User is building or reviewing navigation architecture
13- User has navigation-related bugs (stack not updating, back button issues, state loss)
14- User asks about NavigationStack, NavigationSplitView, TabView, or NavigationPath
15- User needs programmatic navigation (push, pop, pop-to-root)
16- User is implementing deep linking that connects to navigation
17- User asks about navigation transitions or animations
18- User is choosing between navigation approaches for their app
19
20## Decision Tree
21
22Use this to pick the right navigation container:
23
24```
25What is the app structure?
26│
27├─ Flat sections (3-5 top-level areas)
28│ └─ TabView → see tab-view.md
29│
30├─ Hierarchical drill-down (list → detail)
31│ └─ NavigationStack → see navigation-stack.md
32│
33├─ Sidebar + content (macOS / iPad)
34│ ├─ Two columns → NavigationSplitView → see navigation-split-view.md
35│ └─ Three columns → NavigationSplitView → see navigation-split-view.md
36│
37└─ Combined (tabs with drill-down, sidebar with stacks)
38 └─ TabView + NavigationStack per tab
39 OR NavigationSplitView + NavigationStack in detail
40```
41
42## Quick Reference
43
44| Pattern | Container | Min OS | Reference |
45|---------|-----------|--------|-----------|
46| Simple drill-down | `NavigationStack` | iOS 16 | `navigation-stack.md` |
47| Value-based links | `NavigationLink(value:)` | iOS 16 | `navigation-stack.md` |
48| Programmatic push/pop | `NavigationPath` | iOS 16 | `programmatic-navigation.md` |
49| Pop to root | `path = NavigationPath()` | iOS 16 | `programmatic-navigation.md` |
50| State restoration | `NavigationPath.CodableRepresentation` | iOS 16 | `programmatic-navigation.md` |
51| Two-column layout | `NavigationSplitView` | iOS 16 | `navigation-split-view.md` |
52| Three-column layout | `NavigationSplitView` | iOS 16 | `navigation-split-view.md` |
53| Column visibility | `NavigationSplitViewVisibility` | iOS 16 | `navigation-split-view.md` |
54| Tab bar | `TabView` | iOS 13 | `tab-view.md` |
55| Customizable tabs | `Tab` + `TabView` | iOS 18 | `tab-view.md` |
56| Sidebar tabs (iPad) | `.tabViewStyle(.sidebarAdaptable)` | iOS 18 | `tab-view.md` |
57| Zoom transition | `.navigationTransition(.zoom)` | iOS 18 | `navigation-transitions.md` |
58| Custom transitions | `NavigationTransition` | iOS 18 | `navigation-transitions.md` |
59
60## Navigation Design Rules (WWDC22)
61
62The container APIs above decide *how* navigation is built; these rules decide *whether* it's designed right.
63
64**Tab bars**
65- Tabs are top-level **content categories**, not arbitrary groupings — balance features across tabs so each carries real weight.
66- ❌ Never auto-switch tabs in response to an action taken in another tab — confirm in place instead.
67
68**Push vs modal**
69- Push (right-to-left) = traversing the app's hierarchy. Modal (slides up — covering the tab bar is *by design*) = a self-contained task apart from the hierarchy.
70- Modals come in three types: simple task, multi-step task, full-screen content.
71- Limit modals presented over modals — each stacked layer buries the user deeper in transient state.
72
73**Wayfinding**
74- Nav bar title = the current location; the back button shows the *previous* screen's title.
75
76## The Three Cookbook Recipes (WWDC22)
77
78Nearly every app is one of these three shapes. Pick one per scene, then lift its navigation state.
79
801. **Pushable stack** — `NavigationStack(path:)` + `NavigationLink(value:)` + `.navigationDestination(for:)`. Pop-to-root is `path.removeAll()`; a deep link is just assigning the path.
812. **Multi-column without stacks** — `NavigationSplitView` + `List(selection:)` in each leading column. Value links auto-drive the next column's selection, so programmatic navigation is setting the selection value.
823. **Split + stack (Photos-style)** — `NavigationSplitView` with a `NavigationStack(path:)` *inside the detail column*: sidebar selection picks the collection, the stack drills into it.
83
84**Rules that make the recipes hold up:**
85- Build with `NavigationSplitView` even for iPhone-first apps — it auto-collapses to a single stack in compact width, and iPad/Mac layouts come free.
86- Lift navigation state: exactly one bound `path`/selection per container. That single source of truth is what makes pop-to-root, deep links, and restoration one-line operations.
87
88**State restoration:** persist through `@SceneStorage("navigation")` plus a `.task` that restores once on appear, then streams subsequent path changes back into storage.
89
90## Process
91
92### 1. Identify Navigation Needs
93
94Read the user's code or requirements to determine:
95- App structure (flat, hierarchical, sidebar-based)
96- Target platforms (iOS only, iPad adaptive, macOS)
97- Whether programmatic navigation is needed
98- Deep linking requirements
99
100### 2. Load Relevant Reference Files
101
102Based on the need, read from this directory:
103- `navigation-stack.md` — NavigationStack, NavigationLink, navigationDestination
104- `navigation-split-view.md` — Two/three column layouts, column control, adaptive behavior
105- `tab-view.md` — TabView, iOS 18 customizable tabs, sidebar mode
106- `programmatic-navigation.md` — NavigationPath, state restoration, coordinators, pop-to-root
107- `navigation-transitions.md` — Custom push/pop transitions (iOS 18+)
108
109### 3. Review or Recommend
110
111Apply patterns from the reference files. Check for common mistakes:
112
113- [ ] Using deprecated `NavigationView` instead of `NavigationStack`/`NavigationSplitView`
114- [ ] Using `NavigationLink(destination:)` instead of `NavigationLink(value:)` + `.navigationDestination`
115- [ ] Placing `NavigationStack` in a sidebar/content column of `NavigationSplitView` (a stack belongs only in the detail column — Recipe 3)
116- [ ] `.navigationDestination` attached inside a lazy container (destination may never register)
117- [ ] Missing `.navigationDestination` registration for a value type
118- [ ] NavigationPath not `@State` or not in the right scope
119- [ ] Multiple NavigationStacks competing for the same navigation context
120- [ ] Hard-coding navigation instead of using `NavigationPath` for programmatic control
121- [ ] Not handling deep links through the navigation system
122
123### 4. Cross-Reference
124
125- For **deep linking URL handling**, see `generators/deep-linking/` skill
126- For **navigation animations**, see `design/animation-patterns/transitions.md`
127- For **macOS sidebar patterns**, see `macos/ui-review-tahoe/swiftui-macos.md`
128
129## References
130
131- [NavigationStack](https://developer.apple.com/documentation/swiftui/navigationstack)
132- [NavigationSplitView](https://developer.apple.com/documentation/swiftui/navigationsplitview)
133- [NavigationPath](https://developer.apple.com/documentation/swiftui/navigationpath)
134- [TabView](https://developer.apple.com/documentation/swiftui/tabview)
135- [Migrating to new navigation types](https://developer.apple.com/documentation/swiftui/migrating-to-new-navigation-types)