How to simply change views?

Hello everybody,

I don't understand something. Since 'init(destination:isActive:label:)' was deprecated in iOS 16.0 I can't get the view to change properly.

Here is the code for my page:

import SwiftUI

struct CreerUneListeView: View {

@Environment(\.managedObjectContext) private var viewContext
@State private var nom = ""
@Environment(\.presentationMode) var presentationMode
@State private var isListeCreee = false

var body: some View {
    
    NavigationStack {

    ZStack(alignment: .bottomTrailing) {
        VStack(spacing: 0) {
            
            VStack(spacing: 25) {
                
                HStack {
                    
                    Button(action: {
                        presentationMode.wrappedValue.dismiss()
                    }) {
                        Image(systemName: "chevron.left")
                            .foregroundColor(.white)
                    }
                    
                    Text("LearnIO")
                        .fontWeight(.bold)
                        .font(.title)
                        .foregroundColor(.white)
                        .padding(.leading, 10)
                    
                    Spacer()
                    
                    Button(action: {}) {
                        Image(systemName: "magnifyingglass")
                            .resizable()
                            .frame(width: 18, height: 18)
                            .foregroundColor(.white)
                    }
                    
                }.frame(height: 80)
            }
            .padding(.horizontal)
            .padding(.top, UIApplication.shared.connectedScenes
                .flatMap { ($0 as? UIWindowScene)?.windows ?? [] }
                .first { $0.isKeyWindow }?.safeAreaInsets.top)
            .background(PaletteColorTools.one)
            
            
        }
        .edgesIgnoringSafeArea(.all)

    }
                
        GeometryReader { _ in
            
            VStack {
                Spacer()
                TextField("Nom de la liste", text: $nom)
                    .padding()
                    .background(
                        RoundedRectangle(cornerRadius: 10)
                            .stroke(PaletteColorTools.one, lineWidth: 2)
                    )
                    .padding()
                
                Spacer()
                
                Button(action: {
                    let liste = Liste(context: viewContext)
                    liste.nom = self.nom
                    self.nom = ""
                    
                    do {
                        try viewContext.save()
                        self.isListeCreee = true
                    }
                    catch {
                        // Handle Error
                    }
                    
                }) {
                    Text("Créer la liste")
                        .fontWeight(.bold)
                        .font(.system(size: 20))
                        .foregroundColor(.white)
                        .padding()
                        .background(
                            RoundedRectangle(cornerRadius: 10)
                                .stroke(PaletteColorTools.two, lineWidth: 2)
                                .background(
                                    RoundedRectangle(cornerRadius: 10)
                                        .fill(PaletteColorTools.one)
                                )
                        )
                }
                Spacer()
            }
            
        }
        .onTapGesture {
            KeyboardTools.hideKeyboard()
        }
        .navigationBarBackButtonHidden(true)
        .navigationDestination(isPresented: $isListeCreee){
            ContentView()
        }
    }
}

}

What the code does is simple, after clicking the create list button, (after the viewContext.save()), I want to redirect the user to ContentView. Finally in the idea it would be another view with parameters but it already does not work with ContentView()...

The problem is that the view overlaps really strangely with the other. While I just want to change my mind... but I really can't.

Thanks in advance

Where are you trying to use init(destination:isActive:label:)' for NavigationView in your code ?

Did you read the TN from Apple in deprecation notice :

Use init(value : label :) instead. For more information, see Migrating to new navigation types.

How to simply change views?
 
 
Q