React Native Splash Screen
In this tutorial we will learn how to create a splash screen in react native for android We will use the following plugin for the react native splash screen React Native Splash Screen Installation Getting Started Usage API 1. Installation First step(Download) Run npm i react-native-splash-screen --save Second step(Plugin Installation) Automatic installation react-native link react-native-splash-screen or rnpm link react-native-splash-screen Manual installation In your android/settings.gradle file, make the following additions: include ':react-native-splash-screen' project( ':react-native-splash-screen' ) . projectDir = new File (rootProject . projectDir, '../node_modules/react-native-splash-screen/android' ) In your android/app/build.gradle file, add the :react-native-splash-screen project as a compile-time depen...