# Swiftui View Refactor

> Refactor large SwiftUI views and clarify data flow or Observation ownership without changing behavior.

- Skill: `bronc-x/swiftui-view-refactor` (Agent Skill, multi-file: 4 files)
- Install (CLI): `npx skillmds@latest add bronc-x/swiftui-view-refactor`
- Raw SKILL.md: https://api.skillmd.com/api/skills/bronc-x/swiftui-view-refactor/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: bronc-x (https://skillmd.com/u/bronc-x)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/bronc-x/swiftui-view-refactor

---


# SwiftUI view refactor

Refactor toward small, explicit view types while preserving layout and behavior. Follow the project’s existing architecture; do not introduce a view model merely to mirror local state or wrap environment dependencies.

For a substantial view split, Observation ownership change, or MV/MVVM decision, read [references/refactor-guide.md](references/refactor-guide.md) and [references/mv-patterns.md](references/mv-patterns.md). Small ordering or extraction changes need only the relevant guide section.

Prefer dedicated subviews for meaningful sections, explicit inputs and bindings, thin view actions, stable view identity, and business logic in existing services or models. Match `@State`, `@StateObject`, `@ObservedObject`, and `@Observable` ownership to the deployment target and current architecture.

Completion means behavior remains unchanged, the refactored code builds, relevant tests or previews pass, and failures caused by the refactor have been fixed and rechecked.

