We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca068c commit 90fa7b6Copy full SHA for 90fa7b6
1 file changed
Loadify/View/DownloaderView.swift
@@ -18,7 +18,9 @@ struct DownloaderView: View {
18
}
19
20
var body: some View {
21
- GeometryReader { geometry in
+ let thumbnailURL = response.video.thumbnail ?? response.video.url
22
+
23
+ return GeometryReader { geometry in
24
ZStack {
25
LoadifyColors.appBackground
26
.ignoresSafeArea(edges: .all)
@@ -30,7 +32,6 @@ struct DownloaderView: View {
30
32
Spacer()
31
33
34
VStack {
- let thumbnailURL = response.video.thumbnail ?? response.video.url
35
ImageView(
36
urlString: thumbnailURL,
37
platformType: response.platform,
0 commit comments