diff --git a/apps/mobile/app/navigation/tabs-holder.js b/apps/mobile/app/navigation/tabs-holder.js
index ce76326a9..aaa9d864b 100644
--- a/apps/mobile/app/navigation/tabs-holder.js
+++ b/apps/mobile/app/navigation/tabs-holder.js
@@ -384,7 +384,16 @@ const _TabsHolder = () => {
}, []);
useEffect(() => {
- changeNavigationBarColor(colors.primary.background, isDark, true);
+ function updateSystemBars() {
+ changeNavigationBarColor(colors.primary.background, isDark, true);
+ StatusBar.setBackgroundColor("transparent");
+ StatusBar.setTranslucent(true);
+ StatusBar.setBarStyle(isDark ? "light-content" : "dark-content");
+ }
+ updateSystemBars();
+ setTimeout(() => {
+ updateSystemBars();
+ }, 1000);
}, [colors.primary.background, isDark]);
return (
@@ -406,11 +415,7 @@ const _TabsHolder = () => {
: 0
}}
>
-
+
{!introCompleted ? (