commit d878ff6fdb763dc5efbc9056f94902673d22f514
parent 7081c4ac6968e7eacb0e55fd614204da8292035b
Author: OlegAba <mail@olegaba.com>
Date: Fri, 6 Jan 2023 11:38:11 -0500
Add system background color to profile pics
Changelog-Fixed: Add system background color to profile pics
Closes: #270
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git 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)))