2026-08-01-why-my-expo-router-app-froze-on-the-splash-screen-after-a-cold-start-not-257532a7d0
Why an Expo Router App Can Stall on Splash After a Cold-Start Notification Tap
DEV Community

EDITOR BRIEF
An Expo app sometimes appeared stuck on the splash screen only when opened from a push notification after being terminated. Normal launches and notification taps after startup worked, and the splash screen was not the real issue. The root cause was two startup navigations happening at once: an auth check and a notification route change.
INSIGHTS
This shows how race conditions can hide behind a simple symptom. If you are building navigation in React Native or Expo, add a readiness flag so notification handling waits until authentication or initial routing is finished.
COMMENTS
Loading comments…