Choose between `WebImage` and `AnimatedImage`
masterThe library provides two distinct views to balance SwiftUI compatibility with advanced feature requirements:
| Feature | WebImage | AnimatedImage |
|---|---|---|
| Primary Use Case | Standard static/simple animated images | Advanced animations, vectors, progressive loading |
| SwiftUI Integration | Seamless (uses Image internally) | Uses UIViewRepresentable (may have minor layout edge cases) |
| Animated Support | Basic | Advanced (Progressive, Vector, etc.) |
| Layout Control | Standard SwiftUI modifiers | Requires .resizable() and may need native view adjustments |
Recommendation: Start with WebImage. Switch to AnimatedImage only if you specifically need progressive rendering, vector formats, or advanced playback controls.