Skip to content

Embedded NavigationStackView #61

Answered by matteopuc
nosenergies asked this question in Q&A

You must be logged in to vote

Hi @nosenergies,
unfortunately, at the moment the NavigationStack doesn't let you customise the navigation transition for a specific transition (push or pop). See the related issue: #17 what you can do is implement that specific case yourself, for example:

import SwiftUI
import NavigationStack

@main
struct NavStackExampleApp: App {
    var body: some Scene {
        WindowGroup {
            NavigationStackView(transitionType: .custom(.opacity)) { // To set the default transition to fade in/fade out
                ContentView()
            }
        }
    }
}

struct ContentView: View {
    var body: some View {
        ZStack {
            Color.red
            PushView(destination: Ch…

Replies: 1 comment

You must be logged in to vote
0 replies
Answer selected by matteopuc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants