diff --git a/packages/mobile/src/Lib/Interface.ts b/packages/mobile/src/Lib/Interface.ts index f02fea8a6..68814a2f4 100644 --- a/packages/mobile/src/Lib/Interface.ts +++ b/packages/mobile/src/Lib/Interface.ts @@ -460,7 +460,7 @@ export class MobileDevice implements MobileDeviceInterface { } reloadStatusBarStyle(animated = true) { - if (this.statusBarBgColor) { + if (this.statusBarBgColor && Platform.OS === 'android') { StatusBar.setBackgroundColor(this.statusBarBgColor, animated) } StatusBar.setBarStyle(this.isDarkMode ? 'light-content' : 'dark-content', animated)