1

For Android, I made the color of the white screen the same as the Splash Screen color. So how do I change the color of the white screen on iOS?

Blogger Klik
  • 160
  • 1
  • 2
  • 12

1 Answers1

0

use react-native-bootsplash or implement splash screen by your own.

you can change the bg color of splash screen using xCode, find and select the .storyboard that is currently used in your project. from the right side of your x code controls, you will see background prop, from there you can change it.

enter image description here

AlkanV
  • 451
  • 6
  • 17
  • I already changed the background color of Splash Screen. So, after the Splash Screen I'm talking about, there is a white screen that is shown for a short time. I want to change the color of that white screen. – Blogger Klik Feb 19 '23 at 19:14
  • Alright, I understand. This is what we call a "flashing effect." It occurs when you close your splash screen before completing the initialization process. If you are using react-navigation along with react-native-bootsplash, you can resolve this issue by moving all your initialization logic to the Navigator's onReady function. – AlkanV May 12 '23 at 09:12