25 lines
499 B
Swift
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()
|
|
}
|