Same problem here. iOS 14.5 messed up the whole app navigation und now views are immediately popped upon being pushed so the App jumps around and is unusable. I fear this behavior will find its way into the release version as it is also present in the latest release candidate.
Update: Found a fix which is really weird but seems to work until the real cause is found:
In the pushing view that contains the NavigationLinks, add the following meaningless Navigationlink next to your existing ones. So far it seems the problem only occurs if you have more than one NavigationLink in a view and I am sure its related to the mentioned new behavior of 14.5
Add this to your view containing your existing NavigationLinks:
swift
NavigationLink(destination: EmptyView()) {
EmptyView()
}
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: