You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,7 @@ Note we do not guarantee the public API stable for current status. Since SwiftUI
26
26
+ macOS 10.15+
27
27
+ tvOS 13+
28
28
+ watchOS 6+
29
+
+ Swift 5.1+
29
30
30
31
## Installation
31
32
@@ -64,9 +65,12 @@ let package = Package(
64
65
65
66
It supports the placeholder and detail options control for image loading as SDWebImage.
66
67
68
+
Note: Unlike `UIImageView` in UIKit, SwiftUI's `Image` does not support animation. This `WebImage` using `Image` for internal implementation and supports static image format only.
It supports both image url or image data for animated image format. Which use the SDWebImage's [Animated ImageView](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#animated-image-50) for internal implementation.
90
+
Note: `AnimatedImage` supports both image url or image data for animated image format. Which use the SDWebImage's [Animated ImageView](https://github.com/SDWebImage/SDWebImage/wiki/Advanced-Usage#animated-image-50) for internal implementation.
0 commit comments