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

14 lines
423 B
Swift

import SwiftUI
/// View for the frequently asked questions
struct FaqView: View {
// MARK: Properties
/// The actual view
var body: some View {
EmbeddedSafariView(url: URL(fileURLWithPath: Bundle.main.path(forResource: "faq", ofType: "html")!), hasDynamicHeight: false)
.accentColor(.accent)
.navigationViewStyle(StackNavigationViewStyle())
.navigationTitle("faq")
}
}