diff --git a/DevLog/UI/Common/Componeent/LoadingView.swift b/DevLog/UI/Common/Componeent/LoadingView.swift index dec80bb..27fd2a1 100644 --- a/DevLog/UI/Common/Componeent/LoadingView.swift +++ b/DevLog/UI/Common/Componeent/LoadingView.swift @@ -10,12 +10,10 @@ import SwiftUI struct LoadingView: View { var body: some View { ZStack { + Color.black.opacity(0.25).ignoresSafeArea() ProgressView() } + .allowsHitTesting(true) .frame(maxWidth: .infinity, maxHeight: .infinity) } } - -#Preview { - LoadingView() -}