[create-pull-request] automated change

This commit is contained in:
acvigue 2021-06-13 02:17:32 +00:00 committed by GitHub
parent 3f8e3b4fbb
commit 114c9c661c
1 changed files with 3 additions and 3 deletions

View File

@ -13,16 +13,16 @@ import NukeUI
struct ImageView: View {
private var source: URL = URL(string: "https://example.com")!
private var blurhash: String = "001fC^"
init(src: URL) {
self.source = src
}
init(src: URL, bh: String) {
self.source = src
self.blurhash = bh
}
var body: some View {
LazyImage(source: source, content: { state in
if let image = state.image {