co-maps/iphone/Maps/UI/Help/CopyrightView.swift
2025-11-22 13:58:55 +01:00

14 lines
429 B
Swift

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