UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

SOLVED: Tab Bar Transparent

Forums > iOS

Has anyone had this issue where with the Tab bar at the bottom of an app goes transparent when navigating back from another view. My app is now doing that in iOS 15. The list of items goes behind the tabbar and you can see them. I can not seem to figure out how to solve it.

Can anyone help me with this?

Thanks, Mark

6      

IOS 15 changes the default appearance of Tab bars from opaque to transparent. To make them opaque again, you can use this code

.onAppear {
                // correct the transparency bug for Tab bars
                let tabBarAppearance = UITabBarAppearance()
                tabBarAppearance.configureWithOpaqueBackground()
                UITabBar.appearance().scrollEdgeAppearance = tabBarAppearance
                // correct the transparency bug for Navigation bars
                let navigationBarAppearance = UINavigationBarAppearance()
                navigationBarAppearance.configureWithOpaqueBackground()
                UINavigationBar.appearance().scrollEdgeAppearance = navigationBarAppearance
            }

9      

Thanks Alexis, I appreciate that. I will implement that right away. i have been so frustrated the last coupke weeks trying to figure that out.

4      

I apologize if I typed you name wrong. Will i need to put an onAppear on every view?

4      

Thanks alexismoulin for the info.

appledad05 just add it in the TabView and it will show in all views.

4      

@NigelGee thank you. it works great.

4      

So is this behaviour on a Tab Bar having a transparent background now the default..... or is it a BUG?

4      

Hacking with Swift is sponsored by Essential Developer

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.