Post

Replies

Boosts

Views

Activity

Reply to Back menu Item not displaying or working
It looks like your content view isn't wrapped in a NavigationView, only the detail. That won't work, it's like a parent/detail relationship.ContentView.swift: var body: some View { NavigationView { HStack { NavigationLink(destination: DetailView()) { Text("Summary") } } } } From the DetailView.swift file (remove the second navigation view): var body: some View { VStack { Text("Detail View") } }
Feb ’20