From 60a251a5cdf0db9175cbf34f19edab992ffcb469 Mon Sep 17 00:00:00 2001 From: Michael Kirk Date: Wed, 18 Sep 2024 19:52:43 -0700 Subject: [PATCH] add missing protocol conformance The view already has the methods necessary to conform to the protocol, and both of the similar PortraitNavigationView and DynamicallyOrientingNavigationView have this conformance, so presumably this was just an accidental omission. --- .../FerrostarMapLibreUI/Views/LandscapeNavigationView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/Sources/FerrostarMapLibreUI/Views/LandscapeNavigationView.swift b/apple/Sources/FerrostarMapLibreUI/Views/LandscapeNavigationView.swift index b369b078..c28dcac6 100644 --- a/apple/Sources/FerrostarMapLibreUI/Views/LandscapeNavigationView.swift +++ b/apple/Sources/FerrostarMapLibreUI/Views/LandscapeNavigationView.swift @@ -8,7 +8,7 @@ import SwiftUI /// A landscape orientation navigation view that includes the InstructionsView and ArrivalView on the /// leading half of the screen. -public struct LandscapeNavigationView: View { +public struct LandscapeNavigationView: View, CustomizableNavigatingInnerGridView { @Environment(\.navigationFormatterCollection) var formatterCollection: any FormatterCollection @State private var overlaySafeAreaInsets: EdgeInsets = .init(top: 0, leading: 0, bottom: 0, trailing: 0)