From 0045928ab4d19dfb6dbd8bb5d4afecaa443161c9 Mon Sep 17 00:00:00 2001 From: daniel31x13 Date: Wed, 25 Mar 2026 16:03:00 -0400 Subject: [PATCH] revert headerBlurEffect modification --- apps/mobile/app/(tabs)/collections/_layout.tsx | 8 +++----- apps/mobile/app/(tabs)/dashboard/_layout.tsx | 7 ++----- apps/mobile/app/(tabs)/links/_layout.tsx | 7 ++----- apps/mobile/app/(tabs)/settings/_layout.tsx | 7 ++----- apps/mobile/app/(tabs)/tags/_layout.tsx | 7 ++----- 5 files changed, 11 insertions(+), 25 deletions(-) diff --git a/apps/mobile/app/(tabs)/collections/_layout.tsx b/apps/mobile/app/(tabs)/collections/_layout.tsx index b5fb50e7..0035f270 100644 --- a/apps/mobile/app/(tabs)/collections/_layout.tsx +++ b/apps/mobile/app/(tabs)/collections/_layout.tsx @@ -32,11 +32,9 @@ export default function Layout() { headerIconColor: colorScheme === "dark" ? "white" : "black", }, headerShadowVisible: false, - headerBlurEffect: isIOS26Plus - ? "none" - : colorScheme === "dark" - ? "systemMaterialDark" - : "systemMaterial", + headerBlurEffect: + colorScheme === "dark" ? "systemMaterialDark" : "systemMaterial", + headerLargeStyle: { backgroundColor: isIOS26Plus ? "transparent" diff --git a/apps/mobile/app/(tabs)/dashboard/_layout.tsx b/apps/mobile/app/(tabs)/dashboard/_layout.tsx index 55277815..21de2a26 100644 --- a/apps/mobile/app/(tabs)/dashboard/_layout.tsx +++ b/apps/mobile/app/(tabs)/dashboard/_layout.tsx @@ -19,11 +19,8 @@ export default function Layout() { headerLargeTitle: true, headerTransparent: Platform.OS === "ios", headerShadowVisible: false, - headerBlurEffect: isIOS26Plus - ? "none" - : colorScheme === "dark" - ? "systemMaterialDark" - : "systemMaterial", + headerBlurEffect: + colorScheme === "dark" ? "systemMaterialDark" : "systemMaterial", headerTintColor: colorScheme === "dark" ? "white" : "black", headerLargeStyle: { backgroundColor: isIOS26Plus diff --git a/apps/mobile/app/(tabs)/links/_layout.tsx b/apps/mobile/app/(tabs)/links/_layout.tsx index d03f3228..e16c64e4 100644 --- a/apps/mobile/app/(tabs)/links/_layout.tsx +++ b/apps/mobile/app/(tabs)/links/_layout.tsx @@ -32,11 +32,8 @@ export default function Layout() { headerIconColor: colorScheme === "dark" ? "white" : "black", }, headerShadowVisible: false, - headerBlurEffect: isIOS26Plus - ? "none" - : colorScheme === "dark" - ? "systemMaterialDark" - : "systemMaterial", + headerBlurEffect: + colorScheme === "dark" ? "systemMaterialDark" : "systemMaterial", headerLargeStyle: { backgroundColor: isIOS26Plus ? "transparent" diff --git a/apps/mobile/app/(tabs)/settings/_layout.tsx b/apps/mobile/app/(tabs)/settings/_layout.tsx index 4831d900..6e4473aa 100644 --- a/apps/mobile/app/(tabs)/settings/_layout.tsx +++ b/apps/mobile/app/(tabs)/settings/_layout.tsx @@ -19,11 +19,8 @@ export default function Layout() { headerTintColor: colorScheme === "dark" ? "white" : "black", headerShadowVisible: false, headerBackTitle: "Back", - headerBlurEffect: isIOS26Plus - ? "none" - : colorScheme === "dark" - ? "systemMaterialDark" - : "systemMaterial", + headerBlurEffect: + colorScheme === "dark" ? "systemMaterialDark" : "systemMaterial", headerLargeStyle: { backgroundColor: isIOS26Plus ? "transparent" diff --git a/apps/mobile/app/(tabs)/tags/_layout.tsx b/apps/mobile/app/(tabs)/tags/_layout.tsx index 66ac23e2..5fe8d453 100644 --- a/apps/mobile/app/(tabs)/tags/_layout.tsx +++ b/apps/mobile/app/(tabs)/tags/_layout.tsx @@ -31,11 +31,8 @@ export default function Layout() { headerIconColor: colorScheme === "dark" ? "white" : "black", }, headerShadowVisible: false, - headerBlurEffect: isIOS26Plus - ? "none" - : colorScheme === "dark" - ? "systemMaterialDark" - : "systemMaterial", + headerBlurEffect: + colorScheme === "dark" ? "systemMaterialDark" : "systemMaterial", headerLargeStyle: { backgroundColor: isIOS26Plus ? "transparent"