We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The floating panel clips out the tab bar background then I move it down!
The text was updated successfully, but these errors were encountered:
TabBar appearance has refined on iOS15. I confirmed the same issue in Samples app. To fix the clear background, I need to check 'Scroll Edge' of the tab bar in the storyboard or set a value to `UITabBar.scrollEdgeAppearance. As a result, the tab bar show as well as iOS 14 and below. https://developer.apple.com/videos/play/wwdc2021/10059/ https://stackoverflow.com/questions/68688270/ios-15-uitabbarcontrollers-tabbar-background-color-turns-black
Sorry, something went wrong.
let appearance = UITabBarController().tabBar.standardAppearance appearance.backgroundEffect = nil if #available(iOS 15.0, *) { tabBarController.tabBar.scrollEdgeAppearance = appearance tabBarController.tabBar.standardAppearance = appearance }
No branches or pull requests
The floating panel clips out the tab bar background then I move it down!
The text was updated successfully, but these errors were encountered: