Skip to content

Commit e271b23

Browse files
zhongwuzwfacebook-github-bot
authored andcommittedOct 28, 2024·
Fixes regression of RCTWindowFrameDidChangeNotification not fired (#47236)
Summary: Fixes #47234. regression from 391680f#diff-b7fda5d350ac535115fa683faa7317b43aa11f3448f95266ef9ff051c3753a6fL63 bypass-github-export-checks ## Changelog: [IOS] [FIXED] - Fixes regression of RCTWindowFrameDidChangeNotification not fired Pull Request resolved: #47236 Test Plan: Demo in #47234. Reviewed By: blakef Differential Revision: D65058105 Pulled By: cipolleschi fbshipit-source-id: 0e286182ed93f289cb853710e2e00801ef2d4f73
1 parent 4192678 commit e271b23

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎packages/react-native/Libraries/AppDelegate/RCTAppDelegate.mm

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ - (void)loadReactNativeWindow:(NSDictionary *)launchOptions
7676
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
7777
UIViewController *rootViewController = [self createRootViewController];
7878
[self setRootView:rootView toRootViewController:rootViewController];
79+
_window.windowScene.delegate = self;
7980
_window.rootViewController = rootViewController;
8081
[_window makeKeyAndVisible];
8182
}

0 commit comments

Comments
 (0)
Please sign in to comment.