diff --git a/Shared/Components/RemoteImageView.swift b/Shared/Components/RemoteImageView.swift index 388257e..287ebd2 100644 --- a/Shared/Components/RemoteImageView.swift +++ b/Shared/Components/RemoteImageView.swift @@ -63,7 +63,10 @@ struct RemoteImageView: View { Image(uiImage: image) .resizable() } else { - ProgressView() // Показываем индикатор загрузки + ZStack { + Color(.systemGray5) + ProgressView() + } } } }