capacitor-plugin-status-bar 2.0.5 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -92,8 +92,10 @@ import Capacitor
|
|
|
92
92
|
// Note: This requires UIViewControllerBasedStatusBarAppearance = NO
|
|
93
93
|
self.setStatusBarVisibility(hidden: false, animated: animated)
|
|
94
94
|
|
|
95
|
-
// Restore the background view color when showing
|
|
96
|
-
self.
|
|
95
|
+
// Restore the background view color when showing (unless overlay mode is active)
|
|
96
|
+
if !self.isOverlayMode {
|
|
97
|
+
self.restoreStatusBarBackgroundColor()
|
|
98
|
+
}
|
|
97
99
|
}
|
|
98
100
|
}
|
|
99
101
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "capacitor-plugin-status-bar",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"description": "Capacitor plugin for managing the status bar style, visibility, and color on iOS and Android. Control overlay modes, background colors, and appearance for native mobile applications.",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|