Open Engraulis61 opened 1 year ago
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? or custom splash screen..
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
(UIView )createRootViewWithBridge:(RCTBridge )bridge moduleName:(NSString )moduleName initProps:(NSDictionary )initProps { UIView *rootView = [super createRootViewWithBridge:bridge moduleName:moduleName initProps:initProps];
rootView.backgroundColor = [UIColor colorWithRed:(23.0 / 255.0) green:(23.0 / 255.0) blue:(23.0 / 255.0) alpha:(1.0)]; return rootView; }
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?