Files
omnivore/apple/OmnivoreKit/Sources/Views/LoadingSection.swift
2022-02-28 10:21:44 -08:00

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)
}
}
}