Swiftui Guideline: Animation — Use withAnimation. Description: Animate state changes. Do: withAnimation for state transitions. Don't: No animation for state changes. Good Example: withAnimation { isExpanded.toggle() }. Bad Example: isExpanded.toggle(). Severity: Low. Docs: https://developer.apple.com/documentation/swiftui/withanimation(_:_:).