Vladimir Dubovik 92b125927d Commit
2024-12-12 13:37:07 +03:00

26 lines
489 B
Swift

//
// LoadingView.swift
// Schedule ICTIS
//
// Created by G412 on 11.12.2024.
//
import SwiftUI
struct LoadingView: View {
@Binding var isLoading: Bool
var body: some View {
ZStack {
Color("background")
.ignoresSafeArea()
ProgressView()
.progressViewStyle(CircularProgressViewStyle(tint: .secondary))
.scaleEffect(1.2)
}
}
}
#Preview {
LoadingView(isLoading: .constant(true))
}