In the previous iOS versions, I programmatically pushed a NavigationLink with
NavigationLink(isActive: $searched, destination: { SearchView(originalSearchPhrase: $searchedPhrase) }, label: {})
and toggling the isActive variable when I wanted it to be pushed. However, in iOS16, all of the NavigationLinks with isActive are deprecated. Is there still a way to push NavigationLinks programmatically?
