Skip to content

Instantly share code, notes, and snippets.

@nbhasin2
Last active April 3, 2023 02:27
Show Gist options
  • Save nbhasin2/7b5b0395e0a37206c59f8a6a73c0876f to your computer and use it in GitHub Desktop.
Save nbhasin2/7b5b0395e0a37206c59f8a6a73c0876f to your computer and use it in GitHub Desktop.
NavigationStack & NavigationView: CarDetailView and CarType Example
struct CarTypeView: View {
let carType: CarType
var body: some View {
VStack {
Text("Car type: \(carType.rawValue)")
}
.navigationTitle("\(carType.rawValue)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment