如何在 SwiftUI 中更改选项卡项目颜色
How to change tab item color in SwiftUI
我需要我的 tabItem 在活动时是紫色的。就这样:
这是代码示例:
// *some view*
.tabItem {
Image(systemName: "square.and.pencil")
Text("Задания")
}
有办法吗?
在 TabView
闭包之后添加 .accentColor(.purple)
请试试这个
.tabItem {
Image(systemName: "square.and.pencil")
Text("Задания")
}.accentColor(.orange)
我需要我的 tabItem 在活动时是紫色的。就这样:
这是代码示例:
// *some view*
.tabItem {
Image(systemName: "square.and.pencil")
Text("Задания")
}
有办法吗?
在 TabView
闭包之后添加 .accentColor(.purple)
请试试这个
.tabItem {
Image(systemName: "square.and.pencil")
Text("Задания")
}.accentColor(.orange)