-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The white screen that appears after using RNRestart.Restart() #238
Comments
i am also facing same issue |
Facing the same issue |
and me, too. Any of the solutions through the use of react-native-splash-screen or react-native-bootsplash modules? |
any solution for this ? |
I am facing same issue |
Same issue :( |
Facing the same issue. Did anybody find a solution for this? |
This issue is not from the package, You can set the root view background color to your app by adding this code
in your appdelegate.mm file and you will get the desired color |
I want to show a splash screen to the user after calling rnrestart.restart().
In older versions of React, I could solve this problem by adding code to the AppDelegate.mm file. However, since the AppDelegate.mm file has changed, I am unable to display the splash screen after using the RNrestart.Restart() command.
I used to use these codes in old versions of React Native:
RCTRootView *rootView = RCTAppSetupDefaultRootView(bridge, @"appname", nil);
UIStoryboard *sb = [UIStoryboard storyboardWithName:@"LaunchScreen" bundle:nil];
UIViewController vc = [sb instantiateInitialViewController];
UIView launchScreenView = vc.view;
launchScreenView.frame = self.window.bounds;
RCTRootView.loadingView = launchScreenView;
Is there anyone who can help with a solution for this problem?
The text was updated successfully, but these errors were encountered: