Initial commit

This commit is contained in:
oscarz
2024-08-12 10:49:20 +08:00
parent 3002510aaf
commit 00fd0adf89
331 changed files with 53210 additions and 130 deletions

View File

@ -9,10 +9,16 @@ import SwiftUI
struct LoadingView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
ZStack {
Color.black.opacity(0.4).edgesIgnoringSafeArea(.all) // 使
ProgressView() // iOS 14+
.progressViewStyle(CircularProgressViewStyle(tint: .white))
.scaleEffect(1.5) //
}
}
}
#Preview {
LoadingView()
}