SwiftUI NavigationView Trailing Button not detected by Full Keyboard Access.

I am having trouble getting the Full Keyboard Access to focus items in the navigation bar.

Here is the sample code I'm using. When enabling Full Keyboard Access with an external keyboard, Button 1 and Button 2 is navigable, but Button 3 is not.

Code Block swift
        NavigationView {
            List {
                Button("Button 1", action: {})
                Button("Button 2", action: {})
            }
            .navigationBarItems(trailing: Button("Button 3", action: {}))
        }


How do I make the navigation bar item visible to Full Keyboard Access? VoiceOver seems to find the element just fine. I was under the impression that this kind of functionality should come out of the box, but I suppose I am missing something.

Replies

This definitely seems like a bug, please file a bug report and we'll take a look. Thanks!
Bug reported!