2024-06-19 15:15:27 +00:00
|
|
|
import Foundation
|
|
|
|
import SwiftUI
|
|
|
|
|
|
|
|
public extension View {
|
|
|
|
func loadingIndicator(_ isShowing: Bool) -> some View {
|
|
|
|
modifier(LoadingIndicator(isShowing: isShowing))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct LoadingIndicator: ViewModifier {
|
|
|
|
var isShowing: Bool
|
|
|
|
|
|
|
|
func body(content: Content) -> some View {
|
|
|
|
ZStack {
|
|
|
|
content
|
|
|
|
if isShowing {
|
|
|
|
loadingView
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private var loadingView: some View {
|
|
|
|
GeometryReader { proxyReader in
|
|
|
|
ZStack {
|
2024-07-04 08:21:12 +00:00
|
|
|
Color.Material.Elements.active.opacity(0.3)
|
2024-06-19 15:15:27 +00:00
|
|
|
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
|
|
|
|
|
|
|
// loader
|
|
|
|
ProgressView()
|
|
|
|
.progressViewStyle(
|
2024-07-04 08:21:12 +00:00
|
|
|
CircularProgressViewStyle(tint: .Material.Elements.active)
|
2024-06-19 15:15:27 +00:00
|
|
|
)
|
|
|
|
.position(x: proxyReader.size.width / 2, y: proxyReader.size.height / 2)
|
|
|
|
.controlSize(.large)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.ignoresSafeArea()
|
|
|
|
.transition(AnyTransition.opacity.animation(.easeInOut(duration: 0.1)))
|
|
|
|
}
|
|
|
|
}
|