UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

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      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

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.