mirror of
https://github.com/kiwix/kiwix-apple.git
synced 2025-09-07 02:58:10 -04:00
14 lines
194 B
Swift
14 lines
194 B
Swift
// Copyright © 2023 Kiwix.
|
|
|
|
import SwiftUI
|
|
|
|
struct LoadingView: View {
|
|
var body: some View {
|
|
Text("enum.navigation_item.loading".localized)
|
|
}
|
|
}
|
|
|
|
#Preview {
|
|
LoadingView()
|
|
}
|