Files
react-native/packages/react-native/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h
T
David Vacca 4d44273672 Temporarily revert removal of ShadowNodes (#50876)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50876

This diff is temporarily reverting the code shipped in D72671083 to wait for more data before fully release this change

changelog: [internal] internal

Reviewed By: rshest, arushikesarwani94

Differential Revision: D73515903

fbshipit-source-id: 6566e9533ebffc93348e24eb6c0512020b220eae
2025-04-23 13:54:09 -07:00

204 lines
3.9 KiB
C++

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<839c445d700792be5c01b1064c8c73a7>>
*/
/**
* IMPORTANT: Do NOT modify this file directly.
*
* To change the definition of the flags, edit
* packages/react-native/scripts/featureflags/ReactNativeFeatureFlags.config.js.
*
* To regenerate this code, run the following script from the repo root:
* yarn featureflags --update
*/
#pragma once
#include <react/featureflags/ReactNativeFeatureFlagsProvider.h>
namespace facebook::react {
class ReactNativeFeatureFlagsDefaults : public ReactNativeFeatureFlagsProvider {
public:
ReactNativeFeatureFlagsDefaults() = default;
bool commonTestFlag() override {
return false;
}
bool animatedShouldSignalBatch() override {
return false;
}
bool cxxNativeAnimatedEnabled() override {
return false;
}
bool disableMainQueueSyncDispatchIOS() override {
return false;
}
bool disableMountItemReorderingAndroid() override {
return false;
}
bool disableShadowNodeOnNewArchitectureAndroid() override {
return true;
}
bool enableAccessibilityOrder() override {
return false;
}
bool enableAccumulatedUpdatesInRawPropsAndroid() override {
return false;
}
bool enableBridgelessArchitecture() override {
return false;
}
bool enableCppPropsIteratorSetter() override {
return false;
}
bool enableEagerRootViewAttachment() override {
return false;
}
bool enableFabricLogs() override {
return false;
}
bool enableFabricRenderer() override {
return false;
}
bool enableFixForParentTagDuringReparenting() override {
return false;
}
bool enableFontScaleChangesUpdatingLayout() override {
return false;
}
bool enableIOSViewClipToPaddingBox() override {
return false;
}
bool enableJSRuntimeGCOnMemoryPressureOnIOS() override {
return false;
}
bool enableLayoutAnimationsOnAndroid() override {
return false;
}
bool enableLayoutAnimationsOnIOS() override {
return true;
}
bool enableMainQueueModulesOnIOS() override {
return false;
}
bool enableNativeCSSParsing() override {
return false;
}
bool enableNewBackgroundAndBorderDrawables() override {
return true;
}
bool enablePropsUpdateReconciliationAndroid() override {
return false;
}
bool enableSynchronousStateUpdates() override {
return false;
}
bool enableViewCulling() override {
return false;
}
bool enableViewRecycling() override {
return false;
}
bool enableViewRecyclingForText() override {
return true;
}
bool enableViewRecyclingForView() override {
return true;
}
bool fixMappingOfEventPrioritiesBetweenFabricAndReact() override {
return false;
}
bool fuseboxEnabledRelease() override {
return false;
}
bool fuseboxNetworkInspectionEnabled() override {
return false;
}
bool removeTurboModuleManagerDelegateMutex() override {
return false;
}
bool traceTurboModulePromiseRejectionsOnAndroid() override {
return false;
}
bool updateRuntimeShadowNodeReferencesOnCommit() override {
return false;
}
bool useAlwaysAvailableJSErrorHandling() override {
return false;
}
bool useEditTextStockAndroidFocusBehavior() override {
return true;
}
bool useFabricInterop() override {
return true;
}
bool useNativeViewConfigsInBridgelessMode() override {
return false;
}
bool useOptimizedEventBatchingOnAndroid() override {
return false;
}
bool useRawPropsJsiValue() override {
return false;
}
bool useShadowNodeStateOnClone() override {
return false;
}
bool useTurboModuleInterop() override {
return false;
}
bool useTurboModules() override {
return false;
}
};
} // namespace facebook::react