TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

NavigationLink warning

Forums > 100 Days of SwiftUI

I have an issue with my first challenge. I've added a helpview:

      HStack {
                    NavigationLink(
                        destination: HelpView(),
                        isActive: $isShowingHelp,
                        label: {
                            Text("  Help  ")
                                .padding()
                                .background(Color.blue)
                                .foregroundColor(.white)
                                .cornerRadius(8)
                        }
                    )

Throws this warning:

 'init(destination:isActive:label:)' was deprecated in iOS 16.0: use NavigationLink(value:label:), 
 or navigationDestination(isPresented:destination:), inside a NavigationStack or NavigationSplitView                   

Works fine, tho. How can I fix this?

2      

Try this

struct ContentView: View {
    @State private var isShowingHelp = false

    var body: some View {
        NavigationStack {
            Button {
                isShowingHelp.toggle()
            } label: {
                Text("Help")
                    .padding()
                    .background(Color.blue)
                    .foregroundColor(.white)
                    .cornerRadius(8)
            }
            .navigationDestination(isPresented: $isShowingHelp) {
                HelpView()
            }
        }
    }
}

2      

Thanks for the reply,

Throws this error:

Closure containing a declaration cannot be used with result builder 'ViewBuilder'

Edit: Fixed! Thanks so much, I think I misapplied your fix, started from scratch and the error is gone.

2      

The code that above does not give any errors. So will be something esle.

2      

Hacking with Swift is sponsored by Superwall.

SPONSORED Superwall lets you build & test paywalls without shipping updates. Run experiments, offer sales, segment users, update locked features and more at the click of button. Best part? It's FREE for up to 250 conversions / mo and the Superwall team builds out 100% custom paywalls – free of charge.

Learn More

Sponsor Hacking with Swift and reach the world's largest Swift community!

Reply to this topic…

You need to create an account or log in to reply.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.