omnivore/apple/OmnivoreKit/Sources/Views/LoadingSection.swift

17 lines
268 B
Swift
Raw Normal View History

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