Skip to content

Instantly share code, notes, and snippets.

@nbhasin2
Last active April 3, 2023 01:44
Show Gist options
  • Save nbhasin2/0b135f1c618ba577e528dbccd2a97a4f to your computer and use it in GitHub Desktop.
Save nbhasin2/0b135f1c618ba577e528dbccd2a97a4f to your computer and use it in GitHub Desktop.
NavHandlerExample
var body: some View {
NavHandler {
List(cars) { car in
NavigationLink(car.rawValue) {
CarDetailView(car: car)
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment