How to disable NavigationView push and pop animations
Xcode 11.3: Right now there is no modifier to disable NavigationView animations. You can use your struct init() to disable animations, as below: struct ContentView : View { init(){ UINavigationBar.setAnimationsEnabled(false) } var body: some View { NavigationView { VStack { NavigationLink(“Push Me”, destination: Text(“PUSHED VIEW”)) } } } }