Supports the UIAnimatedImage to be resizable in AnimatedImage struct. Only filter the SDAnimatedImage cases

This commit is contained in:
DreamPiggy 2020-03-29 12:47:44 +08:00
parent ba1b36406d
commit ee17bb076c
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ public struct AnimatedImage : PlatformViewRepresentable {
}
// Animated Image does not support resizing mode and rendering mode
if let image = view.wrapped.image, !image.sd_isAnimated, !image.conforms(to: SDAnimatedImageProtocol.self) {
if let image = view.wrapped.image, !image.conforms(to: SDAnimatedImageProtocol.self) {
var image = image
// ResizingMode
if let resizingMode = imageLayout.resizingMode, imageLayout.capInsets != EdgeInsets() {