如何让 ToolbarItem 加粗primaryAction?我已经能够通过在 NavigationView 上设置强调色来更改颜色。主要寻找 SwiftUI 解决方案,但如果不可能,我会选择 UI Kit 解决方案。我的代码:
.toolbar {
ToolbarItem(placement: ToolbarItemPlacement.primaryAction) {
Button(action: { }) {
Text("Save")
.fontWeight(.black) // does nothing
.bold() // does nothing
}
}
}
primaryAction 位置未加粗:
默认情况下,主要位置为粗体: