Skip to content

Instantly share code, notes, and snippets.

@nbhasin2
Created April 3, 2023 01:39
Show Gist options
  • Save nbhasin2/befaece6559892b004e1b3007090d192 to your computer and use it in GitHub Desktop.
Save nbhasin2/befaece6559892b004e1b3007090d192 to your computer and use it in GitHub Desktop.
NavHandler
struct NavHandler<Content>: View where Content: View {
@ViewBuilder var content: () -> Content
var body: some View {
if #available(iOS 16, *) {
NavigationStack(root: content)
} else {
NavigationView(content: content)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment