Swiftui Guideline: State — Use @State for local state. Description: Simple value types owned by view. Do: @State for view-local primitives. Don't: @State for shared data. Good Example: @State private var count = 0. Bad Example: @State var sharedData: Model. Severity: High. Docs: https://developer.apple.com/documentation/swiftui/state.