Change those unused value from public to internal. Since they does not do meaningful things in SwiftUI
This commit is contained in:
parent
930231e172
commit
cd2021d77f
|
@ -10,10 +10,10 @@ import SwiftUI
|
||||||
import SDWebImage
|
import SDWebImage
|
||||||
|
|
||||||
public struct WebImage : View {
|
public struct WebImage : View {
|
||||||
public var url: URL?
|
var url: URL?
|
||||||
public var placeholder: Image?
|
var placeholder: Image?
|
||||||
public var options: SDWebImageOptions
|
var options: SDWebImageOptions
|
||||||
public var context: [SDWebImageContextOption : Any]?
|
var context: [SDWebImageContextOption : Any]?
|
||||||
|
|
||||||
var configurations: [(Image) -> Image] = []
|
var configurations: [(Image) -> Image] = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue