- Add
darkContentBarsStyle
android custom style property inTheme.BootSplash.EdgeToEdge
Example with react-native-bars@2.4.0, which has the same feature:
<resources>
<style name="AppTheme" parent="Theme.EdgeToEdge">
<item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
<item name="darkContentBarsStyle">true</item>
</style>
<style name="BootTheme" parent="Theme.BootSplash.EdgeToEdge">
<item name="bootSplashBackground">@color/bootsplash_background</item>
<item name="bootSplashLogo">@drawable/bootsplash_logo</item>
<item name="darkContentBarsStyle">true</item>
<item name="postBootSplashTheme">@style/AppTheme</item>
</style>
</resources>