SwiftUI SF Symbols Button in NavigationBar not working!

I’m trying to use a button that is a SF Symbol Image as the trailing navigation bar item, however, when clicking the button on a REAL IPHONE, it’s very very unreliable and I end up clicking it 30+ to only get 1 click registered.

My code looks like this:

NavigationView {
			List {
				Text("Example")
			} .navigationBarTitle("Tasks").navigationBarItems(trailing:

			Button(action: { print("I was clicked!")}) {
				Image(systemName: "plus")
			}

			)
}

However, when I put the same button outside of navigationBarItems, the button registers clicks much easier.

What can I do here?

Is this a problem with SwiftUI, if so, is there a workaround?

Thanks!

@t11s Do you still have issues with this?

@shogunkaramazov Yes. It is still an issue.

This topic was automatically closed after 166 days. New replies are no longer allowed.