Masalah Layar Putih Di React Native SplashScreen

// Soluction of white screen issue in react-native-splash-screen
// Provided by Youtube: CodingBite

//	Add this in your styles.xml file
<!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
      //	Previous Code  
      <item name="android:windowDisablePreview">true</item>
    </style>
Dizzy Dolphin