diff options
Diffstat (limited to 'ios/app/AppDelegate.mm')
-rw-r--r-- | ios/app/AppDelegate.mm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ios/app/AppDelegate.mm b/ios/app/AppDelegate.mm index 96e1cca1a..ae764ed43 100644 --- a/ios/app/AppDelegate.mm +++ b/ios/app/AppDelegate.mm @@ -9,6 +9,9 @@ // universal links #import <React/RCTLinkingManager.h> +// splash screen +#import "RNSplashScreen.h" + #if RCT_NEW_ARCH_ENABLED #import <React/CoreModulesPlugins.h> #import <React/RCTCxxBridgeDelegate.h> @@ -57,6 +60,10 @@ rootViewController.view = rootView; self.window.rootViewController = rootViewController; [self.window makeKeyAndVisible]; + + // Show the splash screen + [RNSplashScreen show]; + return YES; } |