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

Change the tab selection color in TabBar SwiftUI

我正在尝试更改 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)
    }

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

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

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