# React Native - Agregar Splash Screen

[https://www.netguru.com/codestories/react-native-splash-screen](https://www.netguru.com/codestories/react-native-splash-screen)

[https://www.npmjs.com/package/react-native-splash-screen](https://www.npmjs.com/package/react-native-splash-screen)

[https://github.com/crazycodeboy/react-native-splash-screen](https://github.com/crazycodeboy/react-native-splash-screen)

```Java
@Override
  protected void onCreate(@Nullable Bundle savedInstanceState) {
    SplashScreen.show(this, R.style.SplashScreenTheme, true); // <- here
    super.onCreate(savedInstanceState);
  }
```