We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5375fd commit d686126Copy full SHA for d686126
WooCommerce/Classes/Extensions/UITabBar+Appearance.swift
@@ -15,6 +15,13 @@ extension UITabBar {
15
/// To fix it, we have to specifically set it in the `standardAppearance` object.
16
///
17
appearance.standardAppearance = createWooTabBarAppearance()
18
+
19
+ /// This is needed because the tab bar background has the wrong color under iOS 15 (using Xcode 13).
20
+ /// More: issue-5018
21
+ ///
22
+ if #available(iOS 15.0, *) {
23
+ appearance.scrollEdgeAppearance = appearance.standardAppearance
24
+ }
25
}
26
27
/// Creates an appearance object for a tabbar with the default WC style.
0 commit comments