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.
Learn more with these courses
CodeFriends courses that build on this story. Practice in the browser with nothing to install.
- Python Programming 101Learn Python in just 20 hours! Kickstart your programming journey with this beginner-friendly course.Beginner20 Hours
- Introduction to Web Development (Light)Master HTML, CSS, and JavaScript in just 10 hours.Beginner10 Hours
- Mastering SQL FundamentalsIn the era of data and AI, numbers speak louder than words. Build a solid foundation in SQL to query, manage, and analyze data effectively.Beginner20 Hours
COMMENTS
Loading comments…