gpt4 book ai didi

ios - 更改 TabBar SwiftUI 中的选项卡选择颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:10:12 24 4
gpt4 key购买 nike

我试图更改 TabBar 中选定选项卡的颜色,但没有任何效果。我可以通过编写

来更改 TabBar backgroundColor
struct ContentView: View {
init() {
UITabBar.appearance().backgroundColor = UIColor.purple
}
var body: some View {
}
}

在 swift 中,我们设置了 tintColor 并且它确实改变了所选标签的颜色。但是我需要为 swiftUI 做什么?

这是我的代码,

    TabView(selection: $selection) {
AView()
.tabItem {
VStack {
Image(systemName: "bubble.left.and.bubble.right")
Text("A Tab")
}
}.tag(0)

BView()
.tabItem {
VStack {
Image(systemName: "house")
Text("B Tab")
}
}.tag(1)

CView()
.tabItem {
VStack {
Image(systemName: "circle.grid.3x3")
Text("C Tab")
}
}.tag(2)
}

有什么帮助吗?提前致谢!!

最佳答案

使用accentColor:https://developer.apple.com/documentation/swiftui/tabview/3368073-accentcolor

TabView {
// fill this out with your tabbed content
}
.accentColor(.orange)

enter image description here

关于ios - 更改 TabBar SwiftUI 中的选项卡选择颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57599123/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com