From 3f0f6953bbed51f372242e66da555cf5333b28ca Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 19 Aug 2026 23:33:32 +0000 Subject: [PATCH] fix(mobil-nav): stabil tillbaka-knapp (slutar blinka/hoppa) Chevron utan textetikett (headerBackButtonDisplayMode: minimal) sa 'tillbaka'-labeln inte mats om och blinkar 2-3 ggr under push. --- apps/mobile/src/app/_layout.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/mobile/src/app/_layout.tsx b/apps/mobile/src/app/_layout.tsx index d13cf2c..131c45b 100644 --- a/apps/mobile/src/app/_layout.tsx +++ b/apps/mobile/src/app/_layout.tsx @@ -59,9 +59,11 @@ export default function RootLayout() { headerStyle: { backgroundColor: colors.background }, headerTintColor: colors.text, headerShadowVisible: false, - headerBackTitle: t("common.back"), + // Chevron utan textetikett – tar bort "tillbaka"-labeln som annars + // blinkar/hoppar när den mäts om under push-övergången. + headerBackButtonDisplayMode: "minimal", contentStyle: { backgroundColor: colors.background }, - fullScreenGestureEnabled: true, + fullScreenGestureEnabled: true, }} >