Is there a way to align navigation bar buttons with the large title?

I'm making a simple swiftUI page that has a list view beneath a navigation bar, which uses automatic title sizing. I'd like the "Add" button to align vertically with the large navigation bar title, rather than appearing above it, as it does when my view looks like so:

Code Block swift
NavigationView {
Form {
List {
ForEach(servers) { server in
Text("Server at \(server.address!)")
}
.onDelete(perform: deleteItems)
}
}
.toolbar {
ToolbarItem(placement: .navigationBarTrailing ) {
Button(action: addItem) {
Label("Add Item", systemImage: "plus")
}
}
}
.navigationBarTitle("Servers")
}


The way it is now, the + button is physically separated from the list it's associated with by a massive gap created to accommodate the navigation bar title.

Is there any way to align the + button vertically so that it lines up neatly with the navigation title, or at least appears below it?
Is there a way to align navigation bar buttons with the large title?
 
 
Q