SwiftUI View Refactor
Overview
Refactor SwiftUI views toward small, explicit, stable view types. Default to vanilla SwiftUI: local state in the view, shared dependencies in the environment, business logic in services/models, and view models only when the request or existing code clearly requires one.
Core Guidelines
1) View ordering (top → bottom)
- Enforce this ordering unless the existing file has a stronger local convention you must preserve.
- Environment
private/public let
@State / other stored properties
- computed
var (non-view)
init
body
- computed view builders / other view helpers
- helper / async functions
2) Default to MV, not MVVM
- Views should be lightweight state expressions and orchestration points, not containers for business logic.
- Favor
@State, @Environment, @Query, .task, .task(id:), and onChange before reaching for a view model.
- Inject services and shared models via
@Environment; keep domain logic in services/models, not in the view body.
- Do not introduce a view model just to mirror local view state or wrap environment dependencies.
- If a screen is getting large, split the UI into subviews before inventing a new view model layer.
3) Strongly prefer dedicated subview types over computed some View helpers
- Flag
body properties that are longer than roughly one screen or contain multiple logical sections.
- Prefer extracting dedicated
View types for non-trivial sections, especially when they have state, async work, branching, or deserve their own preview.
- Keep computed
some View helpers rare and small. Do not build an entire screen out of private var header: some View-style fragments.
- Pass small, explicit inputs (data, bindings, callbacks) into extracted subviews instead of handing down the entire parent state.
- If an extracted subview becomes reusable or independently meaningful, move it to its own file.
Prefer:
var body: some View {
List {
HeaderSection(title: title, subtitle: subtitle)
FilterSection(
filterOptions: filterOptions,
selectedFilter: $selectedFilter
)
ResultsSection(items: filteredItems)
FooterSection()
}
}
private struct HeaderSection: View {
let title: String
let subtitle: String
var body: some View {
VStack(alignment: .leading, spacing: 6) {
Text(title).font(.title2)
Text(subtitle).font(.subheadline)
}
}
}
private struct FilterSection: View {
let filterOptions: [FilterOption]
@Binding var selectedFilter: FilterOption
var body: some View {
ScrollView(.horizontal, showsIndicators: false) {
HStack {
ForEach(filterOptions, id: \.self) { option in
FilterChip(option: option, isSelected: option == selectedFilter)
.onTapGesture { selectedFilter = option }
}
}
}
}
}
Avoid:
var body: some View {
List {
header
filters
results
footer
}
}
private var header: some View {
VStack(alignment: .leading, spacing: 6) {
Text(title).font(.title2)
Text(subtitle).font(.subheadline)
}
}
3b) Extract actions and side effects out of body
- Do not keep non-trivial button actions inline in the view body.
- Do not bury business logic inside
.task, .onAppear, .onChange, or .refreshable.
- Prefer calling small private methods from the view, and move real business logic into services/models.
- The body should read like UI, not like a view controller.
Button("Save", action: save)
.disabled(isSaving)
.task(id: searchText) {
await reload(for: searchText)
}
private func save() {
Task { await saveAsync() }
}
private func reload(for searchText: String) async {
guard !searchText.isEmpty else {
results = []
return
}
await searchService.search(searchText)
}
4) Keep a stable view tree (avoid top-level conditional view swapping)
- Avoid
body or computed views that return completely different root branches via if/else.
- Prefer a single stable base view with conditions inside sections/modifiers (
overlay, opacity, disabled, toolbar, etc.).
- Root-level branch swapping causes identity churn, broader invalidation, and extra recomputation.
Prefer:
var body: some View {
List {
documentsListContent
}
.toolbar {
if canEdit {
editToolbar
}
}
}
Avoid:
var documentsListView: some View {
if canEdit {
editableDocumentsList
} else {
readOnlyDocumentsList
}
}
5) View model handling (only if already present or explicitly requested)
- Treat view models as a legacy or explicit-need pattern, not the default.
- Do not introduce a view model unless the request or existing code clearly calls for one.
- If a view model exists, make it non-optional when possible.
- Pass dependencies to the view via
init, then create the view model in the view's init.
- Avoid
bootstrapIfNeeded patterns and other delayed setup workarounds.
Example (Observation-based):
@State private var viewModel: SomeViewModel
init(dependency: Dependency) {
_viewModel = State(initialValue: SomeViewModel(dependency: dependency))
}
6) Observation usage
- For
@Observable reference types on iOS 17+, store them as @State in the owning view.
- Pass observables down explicitly; avoid optional state unless the UI genuinely needs it.
- If the deployment target includes iOS 16 or earlier, use
@StateObject at the owner and @ObservedObject when injecting legacy observable models.
Workflow
- Reorder the view to match the ordering rules.
- Remove inline actions and side effects from
body; move business logic into services/models and keep only thin orchestration in the view.
- Shorten long bodies by extracting dedicated subview types; avoid rebuilding the screen out of many computed
some View helpers.
- Ensure stable view structure: avoid top-level
if-based branch swapping; move conditions to localized sections/modifiers.
- If a view model exists or is explicitly required, replace optional view models with a non-optional
@State view model initialized in init.
- Confirm Observation usage:
@State for root @Observable models on iOS 17+, legacy wrappers only when the deployment target requires them.
- Keep behavior intact: do not change layout or business logic unless requested.
Notes
- Prefer small, explicit view types over large conditional blocks and large computed
some View properties.
- Keep computed view builders below
body and non-view computed vars above init.
- A good SwiftUI refactor should make the view read top-to-bottom as data flow plus layout, not as mixed layout and imperative logic.
- For MV-first guidance and rationale, see
references/mv-patterns.md.
Large-view handling
When a SwiftUI view file exceeds ~300 lines, split it aggressively. Extract meaningful sections into dedicated View types instead of hiding complexity in many computed properties. Use private extensions with // MARK: - comments for actions and helpers, but do not treat extensions as a substitute for breaking a giant screen into smaller view types. If an extracted subview is reused or independently meaningful, move it into its own file.
1---2name: swiftui-view-refactor3description: Refactor SwiftUI views for better architecture with MV patterns. Use when: cleaning up SwiftUI views, splitting long bodies, standardizing Observable usage, or removing inline side effects.4license: MIT5---6# SwiftUI View Refactor
7
8## Overview
9Refactor SwiftUI views toward small, explicit, stable view types. Default to vanilla SwiftUI: local state in the view, shared dependencies in the environment, business logic in services/models, and view models only when the request or existing code clearly requires one.
10
11## Core Guidelines
12
13### 1) View ordering (top → bottom)
14- Enforce this ordering unless the existing file has a stronger local convention you must preserve.
15- Environment
16- `private`/`public` `let`
17- `@State` / other stored properties
18- computed `var` (non-view)
19- `init`
20- `body`
21- computed view builders / other view helpers
22- helper / async functions
23
24### 2) Default to MV, not MVVM
25- Views should be lightweight state expressions and orchestration points, not containers for business logic.
26- Favor `@State`, `@Environment`, `@Query`, `.task`, `.task(id:)`, and `onChange` before reaching for a view model.
27- Inject services and shared models via `@Environment`; keep domain logic in services/models, not in the view body.
28- Do not introduce a view model just to mirror local view state or wrap environment dependencies.
29- If a screen is getting large, split the UI into subviews before inventing a new view model layer.
30
31### 3) Strongly prefer dedicated subview types over computed `some View` helpers
32- Flag `body` properties that are longer than roughly one screen or contain multiple logical sections.
33- Prefer extracting dedicated `View` types for non-trivial sections, especially when they have state, async work, branching, or deserve their own preview.
34- Keep computed `some View` helpers rare and small. Do not build an entire screen out of `private var header: some View`-style fragments.
35- Pass small, explicit inputs (data, bindings, callbacks) into extracted subviews instead of handing down the entire parent state.
36- If an extracted subview becomes reusable or independently meaningful, move it to its own file.
37
38Prefer:
39
40```swift
41var body: some View {
42 List {
43 HeaderSection(title: title, subtitle: subtitle)
44 FilterSection(
45 filterOptions: filterOptions,
46 selectedFilter: $selectedFilter
47 )
48 ResultsSection(items: filteredItems)
49 FooterSection()
50 }
51}
52
53private struct HeaderSection: View {
54 let title: String
55 let subtitle: String
56
57 var body: some View {
58 VStack(alignment: .leading, spacing: 6) {
59 Text(title).font(.title2)
60 Text(subtitle).font(.subheadline)
61 }
62 }
63}
64
65private struct FilterSection: View {
66 let filterOptions: [FilterOption]
67 @Binding var selectedFilter: FilterOption
68
69 var body: some View {
70 ScrollView(.horizontal, showsIndicators: false) {
71 HStack {
72 ForEach(filterOptions, id: \.self) { option in
73 FilterChip(option: option, isSelected: option == selectedFilter)
74 .onTapGesture { selectedFilter = option }
75 }
76 }
77 }
78 }
79}
80```
81
82Avoid:
83
84```swift
85var body: some View {
86 List {
87 header
88 filters
89 results
90 footer
91 }
92}
93
94private var header: some View {
95 VStack(alignment: .leading, spacing: 6) {
96 Text(title).font(.title2)
97 Text(subtitle).font(.subheadline)
98 }
99}
100```
101
102### 3b) Extract actions and side effects out of `body`
103- Do not keep non-trivial button actions inline in the view body.
104- Do not bury business logic inside `.task`, `.onAppear`, `.onChange`, or `.refreshable`.
105- Prefer calling small private methods from the view, and move real business logic into services/models.
106- The body should read like UI, not like a view controller.
107
108```swift
109Button("Save", action: save)
110 .disabled(isSaving)
111
112.task(id: searchText) {
113 await reload(for: searchText)
114}
115
116private func save() {
117 Task { await saveAsync() }
118}
119
120private func reload(for searchText: String) async {
121 guard !searchText.isEmpty else {
122 results = []
123 return
124 }
125 await searchService.search(searchText)
126}
127```
128
129### 4) Keep a stable view tree (avoid top-level conditional view swapping)
130- Avoid `body` or computed views that return completely different root branches via `if/else`.
131- Prefer a single stable base view with conditions inside sections/modifiers (`overlay`, `opacity`, `disabled`, `toolbar`, etc.).
132- Root-level branch swapping causes identity churn, broader invalidation, and extra recomputation.
133
134Prefer:
135
136```swift
137var body: some View {
138 List {
139 documentsListContent
140 }
141 .toolbar {
142 if canEdit {
143 editToolbar
144 }
145 }
146}
147```
148
149Avoid:
150
151```swift
152var documentsListView: some View {
153 if canEdit {
154 editableDocumentsList
155 } else {
156 readOnlyDocumentsList
157 }
158}
159```
160
161### 5) View model handling (only if already present or explicitly requested)
162- Treat view models as a legacy or explicit-need pattern, not the default.
163- Do not introduce a view model unless the request or existing code clearly calls for one.
164- If a view model exists, make it non-optional when possible.
165- Pass dependencies to the view via `init`, then create the view model in the view's `init`.
166- Avoid `bootstrapIfNeeded` patterns and other delayed setup workarounds.
167
168Example (Observation-based):
169
170```swift
171@State private var viewModel: SomeViewModel
172
173init(dependency: Dependency) {
174 _viewModel = State(initialValue: SomeViewModel(dependency: dependency))
175}
176```
177
178### 6) Observation usage
179- For `@Observable` reference types on iOS 17+, store them as `@State` in the owning view.
180- Pass observables down explicitly; avoid optional state unless the UI genuinely needs it.
181- If the deployment target includes iOS 16 or earlier, use `@StateObject` at the owner and `@ObservedObject` when injecting legacy observable models.
182
183## Workflow
184
1851. Reorder the view to match the ordering rules.
1862. Remove inline actions and side effects from `body`; move business logic into services/models and keep only thin orchestration in the view.
1873. Shorten long bodies by extracting dedicated subview types; avoid rebuilding the screen out of many computed `some View` helpers.
1884. Ensure stable view structure: avoid top-level `if`-based branch swapping; move conditions to localized sections/modifiers.
1895. If a view model exists or is explicitly required, replace optional view models with a non-optional `@State` view model initialized in `init`.
1906. Confirm Observation usage: `@State` for root `@Observable` models on iOS 17+, legacy wrappers only when the deployment target requires them.
1917. Keep behavior intact: do not change layout or business logic unless requested.
192
193## Notes
194
195- Prefer small, explicit view types over large conditional blocks and large computed `some View` properties.
196- Keep computed view builders below `body` and non-view computed vars above `init`.
197- A good SwiftUI refactor should make the view read top-to-bottom as data flow plus layout, not as mixed layout and imperative logic.
198- For MV-first guidance and rationale, see `references/mv-patterns.md`.
199
200## Large-view handling
201
202When a SwiftUI view file exceeds ~300 lines, split it aggressively. Extract meaningful sections into dedicated `View` types instead of hiding complexity in many computed properties. Use `private` extensions with `// MARK: -` comments for actions and helpers, but do not treat extensions as a substitute for breaking a giant screen into smaller view types. If an extracted subview is reused or independently meaningful, move it into its own file.