Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get rid of default white launch Powered by react-native screen in ios?

How to get rid of this default white launch screen in ios? I have deployed my app in App store , this screen is still showing in live version . I want to start my app with my custom splash screen. How to solve this? anybody can help please. Thank you in advance.

**enter image description here**

like image 858
Supriya Gorai Avatar asked Sep 08 '25 15:09

Supriya Gorai


1 Answers

In iOS content displayed on Splash screen is loaded from LaunchScreen.xib file. To view this file:

  1. Open your project in xcode.
  2. On the left menu, expand your project node and then expand your project framework node.
  3. There you will find LaunchScreen.xib file, open that.
  4. Once you open it, you will find configuration settings on right bar where you set the attributes of the content to be displayed, but before that make sure that you have placed your necessary image files on image assets, in order to be accessible from the configurations settings.
like image 154
Anus Kaleem Avatar answered Sep 10 '25 04:09

Anus Kaleem