TabBar background color not set

Since iOS 15, all nav bars are transparent by default. To restore old behaviour, set scrollEdgeAppearance to the default:

let appearance = UITabBarAppearance()
UITabBar.appearance().scrollEdgeAppearance = appearance

Source