Releases: zoontek/react-native-bootsplash
Releases · zoontek/react-native-bootsplash
5.5.0
- Bridgeless mode support (will be the default with new architecture enabled on React Native 0.74)
- Fix splash screen reappearing during screen transitions on Android when
Activity
has been killed - #553 by @Protino - Use system scheme instead of the one returned by
useColorScheme
inuseHideAnimation
, as it can be overridden byAppearance.setColorScheme
(fix #565)
5.4.1
5.4.0
5.3.0
- The CLI generator now suffixes the iOS assets filenames with a hash of the file (kinda like
webpack
with chunks filenames) in order to invalidate springboard cache (see this article for more infos)
5.2.2
5.2.1
5.2.0
- Add
darkContentBarsStyle
android custom style property inTheme.BootSplash.EdgeToEdge
Example with [email protected], 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>