SDWebImageSwiftUI
SDWebImageSwiftUI copied to clipboard
SwiftUI Image loading and Animation framework powered by SDWebImage
This may solve #176 The callstack trace shows that UIHostingView's `dealloc` method will trigger the View's `onDisappear` method. And it use the unownded but not weak for the internal storage....
SDWebImageSwiftUI does not seem to build in Carthage for me at the moment. Tested it with the Swift Package Manager and it works just fine. Terminal Error: ``` *** Building...
Hi, I currently working with this Api: [https://restcountries.eu/rest/v2/all](https://restcountries.eu/rest/v2/all) which has the flag image link : "flag": "https://restcountries.eu/data/afg.svg", However, as the title already said, I could not make it to show....
I'm using SDWebImageSwiftUI for the first time. And I'm getting a forbidden image. Nevertheless, since its not on the client nor on the server, it must be coming from the...
Hey! I'm trying to use this through carthage, it looks like it may not support the `--use-xcframework` flag, is that being tracked?
Clipping the image only seems visually fine in the UI. Unfortunately elements below become unresponsive. It was also reported here on StackOverflow: https://stackoverflow.com/questions/63300411/clipped-not-actually-clips-the-image-in-swiftui/63301282 That's my code to reproduce: ``` var...
I use WebImage with ForEach inside List, but it doesn't always work well. First case works with ios 13, but not with ios 14; other cases don't work with ios...
I have the following SVG string: ``` data:image/svg+xml,Created with getavataaars.com ``` I'm loading like: `AnimatedImage(url: URL(string: svgdata))` but nothing shows, no error either. I also have `SDImageCodersManager.shared.addCoder(SDImageSVGCoder.shared)` loaded and setup...
Latest SDWebImage from pod `WebImage(url: imageUrl)` in preview work like a charm, but ``` @ObservedObject private var imageManager: ImageManager init(imageUrl: URL?) { imageManager = ImageManager(url: imageUrl) } var body: some...
This doesn't work, ``` AnimatedImage(url: URL(string: url)) .resizable() .transition(.fade) .scaledToFit() ``` But this does work ``` AnimatedImage(url: URL(string: url)) .resizable() .scaledToFit() ```