Improved the LoadingView component for the Browse module.
This commit is contained in:
parent
32c5fda8f1
commit
fdb4e16d32
@ -10,18 +10,28 @@ import SwiftUI
|
||||
|
||||
struct LoadingView: View {
|
||||
var body: some View {
|
||||
VStack(spacing: 24) {
|
||||
ProgressView()
|
||||
.controlSize(.large)
|
||||
.tint(.red)
|
||||
VStack {
|
||||
Spacer()
|
||||
|
||||
Text(
|
||||
"loading.loading_data.text",
|
||||
bundle: .module
|
||||
)
|
||||
.font(.body)
|
||||
.fontWeight(.semibold)
|
||||
VStack(spacing: 24) {
|
||||
ProgressView()
|
||||
.controlSize(.large)
|
||||
.tint(.red)
|
||||
|
||||
Text(
|
||||
"loading.loading_data.text",
|
||||
bundle: .module
|
||||
)
|
||||
.font(.body)
|
||||
.fontWeight(.semibold)
|
||||
}
|
||||
.padding(24)
|
||||
.background(Material.ultraThin)
|
||||
.cornerRadius(16)
|
||||
|
||||
Spacer()
|
||||
}
|
||||
.background(Color.clear)
|
||||
.ignoresSafeArea()
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user