SwiftUI ToolbarItem: Button borders/padding seen however untappable
iOS 18+ / Xcode 26 – When utilizing ToolbarItem with a Button styled .borderedProminent, the button reveals borders/padding however these areas do not reply to faucets. Solely the precise heart contained in the crimson rectangle triggers the motion. How one can clear up this?

Code Instance
NavigationStack {
ContentView()
.toolbar {
ToolbarItem(placement: .bottomBar) {
Button("Save") {
print("Tapped!")
}
.buttonStyle(.borderedProminent) // Drawback right here
.border(Colour.crimson) // RED BORDER VISIBLE
}
}
}

NavigationStack {
Button("Save") {
print("Tapped!")
}
.buttonStyle(.borderedProminent)
.border(Colour.crimson)
}
Edit


