mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
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)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|