From d878ff6fdb763dc5efbc9056f94902673d22f514 Mon Sep 17 00:00:00 2001 From: OlegAba Date: Fri, 6 Jan 2023 11:38:11 -0500 Subject: [PATCH] Add system background color to profile pics Changelog-Fixed: Add system background color to profile pics Closes: #270 --- damus/Views/ProfilePicView.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/damus/Views/ProfilePicView.swift b/damus/Views/ProfilePicView.swift index d32e8bf..305cddd 100644 --- a/damus/Views/ProfilePicView.swift +++ b/damus/Views/ProfilePicView.swift @@ -51,7 +51,9 @@ struct InnerProfilePicView: View { } var body: some View { - Group { + ZStack { + Color(uiColor: .systemBackground) + KFAnimatedImage(url) .callbackQueue(.dispatch(.global(qos: .background))) .processingQueue(.dispatch(.global(qos: .background)))