How can I get the ToolbarItem to bold the primaryAction? I have been able to change the color by setting the accent color on the NavigationView. Primarily looking for a SwiftUI solution but I will settle for UI Kit solution if not possible. My Code:
.toolbar {
ToolbarItem(placement: ToolbarItemPlacement.primaryAction) {
Button(action: { }) {
Text("Save")
.fontWeight(.black) // does nothing
.bold() // does nothing
}
}
}
primaryAction placement is not bolded:
principal placement is bolded by default: