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.
2 parents 22ebcfe + b7ff951 commit ede1646Copy full SHA for ede1646
1 file changed
Loadify/View/DownloadView.swift
@@ -64,7 +64,8 @@ struct DownloadView: View {
64
} image: {
65
thumbnailModifier(image: $0)
66
} onLoading: {
67
- ProgressView()
+ progressView
68
+ .frame(minHeight: 188)
69
}
70
durationView
71
.offset(x: -5, y: -5)
@@ -79,6 +80,12 @@ struct DownloadView: View {
79
80
.clipped()
81
82
83
+ private var progressView: some View {
84
+ ZStack {
85
+ ProgressView()
86
+ }
87
88
+
89
private var durationView: some View {
90
Text(details.lengthSeconds.getDuration)
91
.font(.inter(.regular(size: 10)))
0 commit comments