Ios swift – SwiftUI's new NavigationStack warning about navigationDestination not found but I did provide the type
So I have this minimum repro code: struct ListViewWithNewAPI: View { @State var selectedString: String? = nil var body: some View { let details = ["foo", "bar", "baz"] NavigationStack { List { ForEach(details, id: .self) { detail in NavigationLink(detail, value:…