Skip to content

Commit

Permalink
enable setNativeProps in animations on by default (#42603)
Browse files Browse the repository at this point in the history
Summary:
Changelog: [General][Added] Enable setNativeProps in animations in the New Architecture

Pull Request resolved: #42603

Enabling setNativeProps in animations on by default.

Reviewed By: mdvacca

Differential Revision: D52962882

fbshipit-source-id: 67921c8e36e97b7b1315dfa0d5f3bd708ccb0079
  • Loading branch information
sammy-SC authored and facebook-github-bot committed Jan 25, 2024
1 parent 87bcaa3 commit a5aed12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const ReactNativeFeatureFlags: FeatureFlags = {
animatedShouldUseSingleOp: () => false,
enableAccessToHostTreeInFabric: () => false,
shouldUseAnimatedObjectForTransform: () => false,
shouldUseSetNativePropsInFabric: () => false,
shouldUseSetNativePropsInFabric: () => true,
};

module.exports = ReactNativeFeatureFlags;

0 comments on commit a5aed12

Please sign in to comment.