diff --git a/Example/ExampleApp/Sources/AppFeature/AppView.swift b/Example/ExampleApp/Sources/AppFeature/AppView.swift index f2af2d1a349f0fef67c1c929f72dd687b4d60f3c..bf7bcd3d7718f938986b9d1401ef96231a212720 100644 --- a/Example/ExampleApp/Sources/AppFeature/AppView.swift +++ b/Example/ExampleApp/Sources/AppFeature/AppView.swift @@ -37,7 +37,10 @@ struct AppView: View { LandingView(store: store) } .navigationViewStyle(.stack) - .transition(.move(edge: .leading)) + .transition(.asymmetric( + insertion: .move(edge: .leading), + removal: .opacity + )) } ) @@ -49,7 +52,10 @@ struct AppView: View { SessionView(store: store) } .navigationViewStyle(.stack) - .transition(.move(edge: .trailing)) + .transition(.asymmetric( + insertion: .move(edge: .trailing), + removal: .opacity + )) } ) }