Skip to content

Commit

Permalink
add missing protocol conformance
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
michaelkirk committed Sep 19, 2024
1 parent e4f149f commit 58d4afc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 58d4afc

Please sign in to comment.