Skip to content

Commit 5d138ee

Browse files
committed
fix: iOS splash bug
1 parent 02e6816 commit 5d138ee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ios/app/AppDelegate.mm

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
1111
// They will be passed down to the ViewController used by React Native.
1212
self.initialProps = @{};
1313

14-
return [super application:application didFinishLaunchingWithOptions:launchOptions];
14+
[super application:application didFinishLaunchingWithOptions:launchOptions];
1515

1616
[RNSplashScreen show]; // react-native-splash-screen
17+
18+
return YES;
1719
}
1820

1921
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge

0 commit comments

Comments
 (0)