enable setNativeProps in animations on by default (#42603)

Summary:
Changelog: [General][Added] Enable setNativeProps in animations in the New Architecture

Pull Request resolved: https://github.com/facebook/react-native/pull/42603

Enabling setNativeProps in animations on by default.

Reviewed By: mdvacca

Differential Revision: D52962882

fbshipit-source-id: 67921c8e36e97b7b1315dfa0d5f3bd708ccb0079
This commit is contained in:
Samuel Susla
2024-01-25 03:44:22 -08:00
committed by Facebook GitHub Bot
parent 87bcaa3fa1
commit a5aed1294f
@@ -58,7 +58,7 @@ const ReactNativeFeatureFlags: FeatureFlags = {
animatedShouldUseSingleOp: () => false,
enableAccessToHostTreeInFabric: () => false,
shouldUseAnimatedObjectForTransform: () => false,
shouldUseSetNativePropsInFabric: () => false,
shouldUseSetNativePropsInFabric: () => true,
};
module.exports = ReactNativeFeatureFlags;