Skip to content

Commit cf3aaa3

Browse files
committed
fix: splash
1 parent 44aa18b commit cf3aaa3

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

ios/app/AppDelegate.mm

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
#import "AppDelegate.h"
2-
#import "RNSplashScreen.h" // react-native-splash-screen
32
#import <React/RCTBundleURLProvider.h>
3+
#import "RNSplashScreen.h" // react-native-splash-screen
44

55
@implementation AppDelegate
66

77
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
88
{
9-
self.moduleName = @"RnDiffApp";
9+
self.moduleName = @"app";
1010
// You can add your custom initial props in the dictionary below.
1111
// They will be passed down to the ViewController used by React Native.
1212
self.initialProps = @{};
1313

14-
[RNSplashScreen show]; // react-native-splash-screen
15-
16-
1714
return [super application:application didFinishLaunchingWithOptions:launchOptions];
15+
16+
[RNSplashScreen show]; // react-native-splash-screen
1817
}
1918

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

0 commit comments

Comments
 (0)