Releases: zoontek/react-native-bootsplash
Releases · zoontek/react-native-bootsplash
6.3.10
6.3.9
6.3.8
6.3.7
- Fix customize rootView override signature in config plugin by @jblarriviere in #702
- Fix CVE-2024-12905 (#701)
6.3.6
6.3.5
6.3.4
6.3.3
- Remove the need for a Bridging Header file on React Native 0.77+:
import ReactAppDependencyProvider
import RNBootSplash // ⬅️ add this import
// …
@main
class AppDelegate: RCTAppDelegate {
// …
// ⬇️ override this method
override func customize(_ rootView: RCTRootView!) {
super.customize(rootView)
RNBootSplash.initWithStoryboard("BootSplash", rootView: rootView) // ⬅️ initialize the splash screen
}
}