Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -708,17 +708,6 @@ const definitions: FeatureFlagDefinitions = {

jsOnly: {
...testDefinitions.jsOnly,
alwaysFlattenAnimatedStyles: {
defaultValue: false,
metadata: {
dateAdded: '2025-06-02',
description:
'Changes `Animated` to always flatten style, fixing a bug with shadowed `AnimatedNode` instances.',
expectedReleaseValue: true,
purpose: 'experimentation',
},
ossReleaseStage: 'none',
},
animatedShouldDebounceQueueFlush: {
defaultValue: false,
metadata: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<d30fc4e36ad600353c9b9098fd71430a>>
* @generated SignedSource<<742172e146c6eeb22c2b5058058b1b83>>
* @flow strict
* @noformat
*/
Expand All @@ -29,7 +29,6 @@ import {

export type ReactNativeFeatureFlagsJsOnly = $ReadOnly<{
jsOnlyTestFlag: Getter<boolean>,
alwaysFlattenAnimatedStyles: Getter<boolean>,
animatedShouldDebounceQueueFlush: Getter<boolean>,
animatedShouldUseSingleOp: Getter<boolean>,
avoidStateUpdateInAnimatedPropsMemo: Getter<boolean>,
Expand Down Expand Up @@ -120,11 +119,6 @@ export type ReactNativeFeatureFlags = $ReadOnly<{
*/
export const jsOnlyTestFlag: Getter<boolean> = createJavaScriptFlagGetter('jsOnlyTestFlag', false);

/**
* Changes `Animated` to always flatten style, fixing a bug with shadowed `AnimatedNode` instances.
*/
export const alwaysFlattenAnimatedStyles: Getter<boolean> = createJavaScriptFlagGetter('alwaysFlattenAnimatedStyles', false);

/**
* Enables an experimental flush-queue debouncing in Animated.js.
*/
Expand Down
Loading