@@ -78,7 +78,7 @@ let package = Package(
7878### Using ` WebImage ` to load network image
7979
8080- [x] Supports placeholder and detail options control for image loading as SDWebImage
81- - [x] Supports progressive image loading
81+ - [x] Supports progressive image loading (like baseline)
8282- [x] Supports success/failure/progress changes event for custom handling
8383- [x] Supports indicator with activity/progress indicator and customization
8484- [x] Supports built-in animation and transition, powered by SwiftUI
@@ -108,17 +108,17 @@ Note: This `WebImage` using `Image` for internal implementation, which is the be
108108### Using ` AnimatedImage ` to play animation
109109
110110- [x] Supports network image as well as local data and bundle image
111- - [x] Supports animated progressive image loading
111+ - [x] Supports animated progressive image loading (like web browser)
112112- [x] Supports animation control using the SwiftUI Binding
113113- [x] Supports indicator and transition, powered by SDWebImage and Core Animation
114- - [x] Supports advanced control like loop count, incremental load , buffer size
114+ - [x] Supports advanced control like loop count, playback rate , buffer size, runloop mode, etc
115115- [x] Supports coordinate with native UIKit/AppKit/WatchKit view
116116
117117``` swift
118118var body: some View {
119119 Group {
120120 // Network
121- AnimatedImage (url : URL (string : " https://raw.githubusercontent.com/liyong03/YLGIFImage/master/YLGIFImageDemo/YLGIFImageDemo/joy.gif" ))
121+ AnimatedImage (url : URL (string : " https://raw.githubusercontent.com/liyong03/YLGIFImage/master/YLGIFImageDemo/YLGIFImageDemo/joy.gif" ), options : [. progressiveLoad ]) // Progressive Load
122122 .onFailure { error in
123123 // Error
124124 }
0 commit comments