Here is a simple way to reproduce the issue:
struct KeyboardToolbarItem: View {
@State var text: String = "foobar"
var body: some View {
Form {
TextField("Foo", text: $text)
.toolbar {
ToolbarItem(placement: .keyboard) {
Button {
} label: {
Image(systemName: "chevron.down")
}
}
}
}
}
}
#Preview {
KeyboardToolbarItem()
}
One would expect there to be some padding at the bottom of the button.
This is on Xcode 26.1 Beta 3 & iOS 26.1 beta 4
Topic:
UI Frameworks
SubTopic:
SwiftUI