Posts

Post not yet marked as solved
4 Replies
54k Views
Hi, I'm getting warning in my Swift package where one of external dependency supports from iOS8.0, is it as bug in xcode or do we need to ask 3rd party developer to remove iOS8.0 supports, i believe they need to support library in cocoapods for iOS8.0 as well Warning: IPHONEOSDEPLOYMENTTARGET is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.0.99 Forum thread: https://forums.swift.org/t/unable-to-import-multiple-targets-from-external-dependency/39030/3
Posted Last updated
.
Post not yet marked as solved
2 Replies
721 Views
When i debug on simulator or device most of them time my widget shows black screen or flickers a lot, i guess during loading async data in timeline provider it has to show placeholder but it's not happening at all, in release build it's better than debug build but still placeholder does not show anyone has same issue or any solution? NOTE: My widget is intent configuration based and provides dynamic option
Posted Last updated
.
Post not yet marked as solved
0 Replies
249 Views
I’m trying to load remote image in widget ui but unfortunately when image downloaded widget body is not called again sometimes to render image but same code works fine regular swiftui project, please let me know if there is any solution to it since it’s release blocker, below is pseudocode sorry i typed from my mobile Struct ContentView: View { @ObservedObject vat imageLoader: ImageLoader var body: some view { Text(some text) if let image = imageLoader.image { Image(uiimage: image) .resizable() .frame(width:40, height:40) } }.onAppear { imageLoader.load() } } Thanks
Posted Last updated
.