Review, write, and fix SwiftUI animations. Apply modern animation APIs with correct timing, transitions, and accessibility handling using Swift 6.2 patterns.
| State-driven | withAnimation, .animation(:value:) | Simple property changes | | Multi-phase | PhaseAnimator | Sequenced multi-step animations | | Keyframe | KeyframeAnimator | Complex multi-property choreography | | Shared element | matchedGeometryEffect | Layout-driven hero transitions |
| Navigation | matchedTransitionSource + .navigationTransition(.zoom) | NavigationStack push/pop zoom | | View lifecycle | .transition() | Insertion and removal | | Text content | .contentTransition() | In-place text/number changes | | Symbol | .symbolEffect() | SF Symbol animations | | Custom | CustomAnimation protocol | Novel timing curves |
Implemente, revise o mejore animaciones y transiciones de SwiftUI. Úselo al agregar animaciones implícitas o explícitas con withAnimation, configurar animaciones de primavera (.smooth, .snappy, .bouncy), crear animaciones de fase o fotogramas clave con PhaseAnimator/KeyframeAnimator, crear transiciones de héroe con matchedGeometryEffect o matchedTransitionSource, agregar efectos de símbolo SF (rebote, pulso, color variable, respirar, rotar, menear), implementar tipos personalizados de transición o CustomAnimation o garantizar el respeto de las animaciones. accesibilidadReduceMotion. Fuente: dpearson2699/swift-ios-skills.