co-maps/iphone/Maps/UI/Help/CopyrightView.swift

15 lines
429 B
Swift
Raw Normal View History

2025-11-22 13:58:55 +01:00
import SwiftUI
/// View for the copyright info
struct CopyrightView: View {
// MARK: Properties
/// The actual view
var body: some View {
EmbeddedSafariView(url: URL(fileURLWithPath: Bundle.main.path(forResource: "copyright", ofType: "html")!), hasDynamicHeight: false)
.accentColor(.accent)
.navigationViewStyle(StackNavigationViewStyle())
.navigationTitle("copyright")
}
}