kiwix-apple/Views/BuildingBlocks/LoadingView.swift
Balazs Perlaki-Horvath 1c7b6edcce Custom app support
2023-12-03 11:26:32 +01:00

14 lines
176 B
Swift

// Copyright © 2023 Kiwix.
import SwiftUI
struct LoadingView: View {
var body: some View {
Text("Loading...".localized)
}
}
#Preview {
LoadingView()
}