SwiftUI - Proceed to new view, from an alert

514 Views Asked by At

I am new to SwiftUI. I have the following code, and I would like to proceed to 'ContentView2', when the user clicks 'Proceed' on the alert

struct ContentView: View {

@State var alertIsShown: Bool

var myArray = ["Blue","Red","Pink","Yellow"]

var body: some View {
    
    NavigationView{
    
    List(0..<myArray.count) { i in
        Button(action: {
                print("Button tapped")
            alertIsShown = true
            
        }) {
            Text(myArray[i])
        }
        .alert(isPresented: $alertIsShown) {
            Alert(title: Text("You have chosen"), message: Text("Are you sure you want to go to contentview2?"), primaryButton: .destructive(Text("Proceed!")) {
                    print("Proceeding...")
                
                ///Solution?
                
                
            }, secondaryButton: .cancel())
            
        }
    }
    }
}

}

struct ContentView2 : View {
    var body: some View {
        Text("Im the second view")
// This will eventually say "Im the yellow view", based on the selection on CV1
    }
}

Is this possible?

1

There are 1 best solutions below

0
On

Here an example code which is working. But it will alway navigate to ContentView2, independent on which item in the list you will click.

struct ContentView: View {
    
    @State var alertIsShown = false
    @State private var navigate = false
    
    var myArray = ["Blue","Red","Pink","Yellow"]
    
    var body: some View {
        
        NavigationView{
            ZStack {
                NavigationLink(destination: ContentView2(), isActive: $navigate){
                    EmptyView()
                }
                List(0..<myArray.count) { i in
                    Button(action: {
                        print("Button tapped")
                        alertIsShown = true
                    }) {
                        Text(myArray[i])
                    }
                    .alert(isPresented: $alertIsShown) {
                        Alert(title: Text("You have chosen"), message: Text("Are you sure you want to go to contentview2?"), primaryButton: .destructive(Text("Proceed!")) {
                            navigate.toggle()
                        }, secondaryButton: .cancel())
                        
                    }
                }
            }
        }
    }
}