From c297b51f8c7a8073749ccc61ee4597cf9a96a370 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 3d08fd80..3d95e6ad 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)