Skip to content

Instantly share code, notes, and snippets.

@NikolajMosbaek
Created April 27, 2022 12:50
Show Gist options
  • Save NikolajMosbaek/744329b3303701d5e9d4892547826446 to your computer and use it in GitHub Desktop.
Save NikolajMosbaek/744329b3303701d5e9d4892547826446 to your computer and use it in GitHub Desktop.
An extension to force stacked navigation style on phones
extension View {
@ViewBuilder func phoneOnlyNavigationView() -> some View {
if UIDevice.current.userInterfaceIdiom == .phone {
self.navigationViewStyle(.stack)
} else {
self
}
}
}
@NikolajMosbaek
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment