File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ It aims to ensure the following function available for users and try to do some
1717+ SwiftUI compatibility
1818+ Swift source code compatibility
1919
20- Note we do not guarantee the public API stable for current status. Since Xcode 11 is not get released and SwiftUI is a new platform for us.
20+ Note we do not guarantee the public API stable for current status. Since SwiftUI is a new platform for us, we need to investigate the API design .
2121
2222## Requirements
2323
@@ -66,7 +66,7 @@ It supports the placeholder and detail options control for image loading as SDWe
6666
6767``` swift
6868var body: some View {
69- WebImage (url : URL (string : " https://nokiatech.github.io/heif/content/images/ski_jump_1440x960.heic" )! )
69+ WebImage (url : URL (string : " https://nokiatech.github.io/heif/content/images/ski_jump_1440x960.heic" ))
7070 .scaledToFit ()
7171 .frame (width : 300 , height : 300 , alignment : .center )
7272}
@@ -76,7 +76,7 @@ var body: some View {
7676
7777``` swift
7878var body: some View {
79- AnimatedImage (url : URL (string : " https://raw.githubusercontent.com/liyong03/YLGIFImage/master/YLGIFImageDemo/YLGIFImageDemo/joy.gif" )! )
79+ AnimatedImage (url : URL (string : " https://raw.githubusercontent.com/liyong03/YLGIFImage/master/YLGIFImageDemo/YLGIFImageDemo/joy.gif" ))
8080 AnimatedImage (data : try ! Data (contentsOf : URL (fileURLWithPath : " /tmp/foo.webp" )))
8181}
8282```
Original file line number Diff line number Diff line change 88
99Pod ::Spec . new do |s |
1010 s . name = 'SDWebImageSwiftUI'
11- s . version = '0.1.0 '
11+ s . version = '0.1.1 '
1212 s . summary = 'Integration of SDWebImage Asynchronous image loading and SwiftUI framework'
1313
1414 s . description = <<-DESC
Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >$(PRODUCT_BUNDLE_PACKAGE_TYPE) </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >0.1.0 </string >
18+ <string >0.1.1 </string >
1919 <key >CFBundleVersion </key >
2020 <string >$(CURRENT_PROJECT_VERSION) </string >
2121</dict >
You can’t perform that action at this time.
0 commit comments