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 String Catalog.

SPONSORED Get accurate app localizations in minutes using AI. Choose your languages & receive translations for 40+ markets!

Localize My App

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.