diff --git a/Modules/Sources/Browse/UI/Components/LoadingView.swift b/Modules/Sources/Browse/UI/Components/LoadingView.swift index d57ec8d..efec2c1 100644 --- a/Modules/Sources/Browse/UI/Components/LoadingView.swift +++ b/Modules/Sources/Browse/UI/Components/LoadingView.swift @@ -10,18 +10,28 @@ import SwiftUI struct LoadingView: View { var body: some View { - VStack(spacing: 24) { - ProgressView() - .controlSize(.large) - .tint(.red) + VStack { + Spacer() - Text( - "loading.loading_data.text", - bundle: .module - ) - .font(.body) - .fontWeight(.semibold) + VStack(spacing: 24) { + ProgressView() + .controlSize(.large) + .tint(.red) + + Text( + "loading.loading_data.text", + bundle: .module + ) + .font(.body) + .fontWeight(.semibold) + } + .padding(24) + .background(Material.ultraThin) + .cornerRadius(16) + + Spacer() } + .background(Color.clear) .ignoresSafeArea() } }