Title: React Native Screens enables edge-to-edge mode on Android 15 despite navigationBarTranslucent: false
Summary The issue is with React Native Screens enabling edge-to-edge mode on Android 15, despite setting navigationBarTranslucent: false. This causes the navigation bar to remain white, even when trying to set a custom color. Root Cause The react-native-is-edge-to-edge package detects edge-to-edge as enabled, and react-native-screens calls WindowCompat.setDecorFitsSystemWindows(window,!translucent) based on the navigationBarTranslucent prop. However, setting navigationBarTranslucent: … Read more