diff --git a/Libraries/Utilities/LoadingView.ios.js b/Libraries/Utilities/LoadingView.ios.js index d1d74f6f059233..e8f7d133f5caf3 100644 --- a/Libraries/Utilities/LoadingView.ios.js +++ b/Libraries/Utilities/LoadingView.ios.js @@ -16,7 +16,7 @@ import NativeDevLoadingView from './NativeDevLoadingView'; module.exports = { showMessage(message: string, type: 'load' | 'refresh') { if (NativeDevLoadingView) { - const green = processColor('#275714'); + const green = processColor('#005a00'); const blue = processColor('#2584e8'); const white = processColor('#ffffff'); diff --git a/React/CxxBridge/RCTCxxBridge.mm b/React/CxxBridge/RCTCxxBridge.mm index 4383cf5d5a4007..e8861b70bf879e 100644 --- a/React/CxxBridge/RCTCxxBridge.mm +++ b/React/CxxBridge/RCTCxxBridge.mm @@ -377,8 +377,8 @@ - (void)start } onProgress:^(RCTLoadingProgress *progressData) { #if (RCT_DEV | RCT_ENABLE_LOADING_VIEW) && __has_include() - // Note: RCTDevLoadingView should have been loaded at this point, so no need to allow lazy loading. - id loadingView = [weakSelf moduleForName:@"DevLoadingView" lazilyLoadIfNecessary:NO]; + id loadingView = [weakSelf moduleForName:@"DevLoadingView" + lazilyLoadIfNecessary:YES]; [loadingView updateProgress:progressData]; #endif }];