Skip to content

6.3.3

Compare
Choose a tag to compare
@zoontek zoontek released this 30 Jan 18:03
· 25 commits to master since this release
c4a3f96
  • 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
  }
}