TabView Background color

What is the best way to add a background color to tabview? I tried the code below with .tabViewBackgroundONE(.blue) but still no change

extension View {
    func tabViewBackgroundONE(_ color: Color) -> some View {
        self.background(
            ZStack {
                color.ignoresSafeArea()
            }
        )
    }
}
Was this page helpful?