From 9e957742038474c0845f0fe590a985ed4c6edde7 Mon Sep 17 00:00:00 2001 From: Aman Harwara Date: Mon, 31 Jul 2023 23:40:30 +0530 Subject: [PATCH] fix: Fixed issue on iOS where status bar colors would not adjust according to the theme --- packages/ui-services/src/Theme/ThemeManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui-services/src/Theme/ThemeManager.ts b/packages/ui-services/src/Theme/ThemeManager.ts index 13a3f2c48..234fc3032 100644 --- a/packages/ui-services/src/Theme/ThemeManager.ts +++ b/packages/ui-services/src/Theme/ThemeManager.ts @@ -331,7 +331,7 @@ export class ThemeManager extends AbstractUIServicee { link.onload = () => { this.syncThemeColorMetadata() - if (this.application.isNativeMobileWeb()) { + if (this.application.isNativeMobileWeb() && !theme.layerable) { const packageInfo = theme.featureDescription setTimeout(() => { this.application