Files
swiftGrammar/AIGrammar/CommView/LoadingView.swift
2024-08-12 10:49:20 +08:00

25 lines
499 B
Swift

//
// LoadingView.swift
// AIGrammar
//
// Created by oscar on 2024/7/7.
//
import SwiftUI
struct LoadingView: View {
var body: some View {
ZStack {
Color.black.opacity(0.4).edgesIgnoringSafeArea(.all) // 使
ProgressView() // iOS 14+
.progressViewStyle(CircularProgressViewStyle(tint: .white))
.scaleEffect(1.5) //
}
}
}
#Preview {
LoadingView()
}