Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to hide status bar when splash screen appears in iphone?

Is there a way to hide the status bar when showing splash screen in iPhone and then show again in application?

like image 521
Rahul Vyas Avatar asked Jul 18 '09 14:07

Rahul Vyas


People also ask

How do I hide status bar in splash screen react native?

to make the StatusBar transparent, use backgroundColor={'transparent'} and translucent={true} options in StatusBar component of RN(React Native) like above.

How to hide capacitor splash Screen?

Hiding the Splash Screen To make sure you provide the fastest app loading experience to your users, you must hide the splash screen automatically when your app is ready to be used. Simply add the SplashScreen. hide() call near the top of your app's JS, such as in app. component.


1 Answers

I'm pretty sure that if your Info.plist file has the Status bar is initially hidden value set to YES, then it won't show while your application is loading. Once your application has loaded, you can re-show the status bar using UIApplication's setStatusBarHidden:animated: method.

like image 158
Dave DeLong Avatar answered Oct 04 '22 20:10

Dave DeLong