17 lines
268 B
Swift
17 lines
268 B
Swift
import SwiftUI
|
|
|
|
public struct LoadingSection: View {
|
|
public init() {}
|
|
|
|
public var body: some View {
|
|
Section {
|
|
HStack(alignment: .center) {
|
|
Spacer()
|
|
Text("Loading...")
|
|
Spacer()
|
|
}
|
|
.frame(maxWidth: .infinity)
|
|
}
|
|
}
|
|
}
|