var body: some View { NavigationStack { List(hikes) { hike in NavigationLink(value: hike) { HikeCellView(hike: hike) } }.navigationTitle("Hikes") .navigationDestination(for: Hike.self) { hike in Text(hike.name) } } }
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter