Target Branch
0.85
Link to commit or PR to be picked
facebook/react-native@bec2933
Description
Fixes an issue on iOS where the "Loading from Metro..." banner can remain stuck on screen after a reload.
RCTInstance._loadScriptFromSource posts RCTInstanceDidLoadBundle, not RCTJavaScriptDidLoadNotification. The legacy notification is never posted, so the existing native hide path is dead.
Also, RCTDevLoadingView has no cleanup. Without hiding the window and clearing its reference, it remains alive and stuck on screen.
Target Branch
0.85
Link to commit or PR to be picked
facebook/react-native@bec2933
Description
Fixes an issue on iOS where the "Loading from Metro..." banner can remain stuck on screen after a reload.
RCTInstance._loadScriptFromSourcepostsRCTInstanceDidLoadBundle, notRCTJavaScriptDidLoadNotification. The legacy notification is never posted, so the existing native hide path is dead.Also,
RCTDevLoadingViewhas no cleanup. Without hiding the window and clearing its reference, it remains alive and stuck on screen.