This commit is contained in:
cranci1 2024-12-28 16:13:16 +01:00
parent b4d213ac31
commit 8d2423bbc1
4 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@ struct CircularProgressBar: View {
.rotationEffect(Angle(degrees: 270.0)) .rotationEffect(Angle(degrees: 270.0))
.animation(.linear, value: progress) .animation(.linear, value: progress)
if progress >= 0.95 { if progress >= 0.90 {
Image(systemName: "checkmark") Image(systemName: "checkmark")
.font(.system(size: 12)) .font(.system(size: 12))
} else { } else {
@ -33,4 +33,4 @@ struct CircularProgressBar: View {
} }
} }
} }
} }

View file

@ -22,7 +22,7 @@ struct EpisodeCell: View {
var body: some View { var body: some View {
HStack { HStack {
ZStack { ZStack {
KFImage(URL(string: episodeImageUrl.isEmpty ? imageUrl : episodeImageUrl)) KFImage(URL(string: episodeImageUrl.isEmpty ? "https://raw.githubusercontent.com/cranci1/Sora/refs/heads/main/assets/banner2.png" : episodeImageUrl))
.resizable() .resizable()
.aspectRatio(16/9, contentMode: .fill) .aspectRatio(16/9, contentMode: .fill)
.frame(width: 100, height: 56) .frame(width: 100, height: 56)

BIN
assets/banner2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 222 KiB