Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error screen with white background

When getting an exception with React Native on iOS, I get this error screen with white background. You can see by the tapped cell that it actually has the exception stack, only with a white background. Not sure why's happening, but is there a way to fix? On Android the screen has red background (hence working as expected.)

Running React Native 0.48.3.

React Native Exception Screen

like image 454
diogocarmo Avatar asked Sep 13 '17 20:09

diogocarmo


1 Answers

Found out why it was happening (At least in my case)

My team implemented a new launch screen as a .storyboard file, and that was causing the white screen. If you change that launch screen for a .xib file it should work.

like image 97
Forres Avatar answered Nov 15 '22 07:11

Forres