diff options
| author | Fuwn <[email protected]> | 2025-03-02 07:56:20 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-03-02 07:56:20 -0800 |
| commit | 971279c14e2f32f7b16ee8608c3bbe0e5746b607 (patch) | |
| tree | bbcd900affbe3cdcdc44fff6c5a574f19269a74f /Sora/Views/Post/Details | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-971279c14e2f32f7b16ee8608c3bbe0e5746b607.tar.xz sora-testing-971279c14e2f32f7b16ee8608c3bbe0e5746b607.zip | |
feat: Development commit
Diffstat (limited to 'Sora/Views/Post/Details')
| -rw-r--r-- | Sora/Views/Post/Details/PostDetailsCarouselView.swift | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Sora/Views/Post/Details/PostDetailsCarouselView.swift b/Sora/Views/Post/Details/PostDetailsCarouselView.swift index 2bc8b32..1d6acb0 100644 --- a/Sora/Views/Post/Details/PostDetailsCarouselView.swift +++ b/Sora/Views/Post/Details/PostDetailsCarouselView.swift @@ -55,7 +55,9 @@ struct PostDetailsCarouselView: View { finalLoadingState: .loaded, post: posts[index] ) - .background(.background) + .background( + loadingStage == .loaded ? Color(.systemBackground) : Color.clear + ) } .tag(index) } |