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 @@ -797,6 +797,17 @@ const definitions: FeatureFlagDefinitions = {
},
ossReleaseStage: 'none',
},
cxxAnimatedDebounceQueueFlushDisabled: {
defaultValue: false,
metadata: {
dateAdded: '2025-08-21',
description:
'Disable debounce queue flush if C++ Native Animated is enabled.',
expectedReleaseValue: true,
purpose: 'experimentation',
},
ossReleaseStage: 'none',
},
deferFlatListFocusChangeRenderUpdate: {
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<<825b92d137ed3253e0badd0696605882>>
* @generated SignedSource<<8c13ccfed8750e3a8d5259e4b8ce3021>>
* @flow strict
* @noformat
*/
Expand All @@ -31,6 +31,7 @@ export type ReactNativeFeatureFlagsJsOnly = $ReadOnly<{
jsOnlyTestFlag: Getter<boolean>,
animatedShouldDebounceQueueFlush: Getter<boolean>,
animatedShouldUseSingleOp: Getter<boolean>,
cxxAnimatedDebounceQueueFlushDisabled: Getter<boolean>,
deferFlatListFocusChangeRenderUpdate: Getter<boolean>,
enableAccessToHostTreeInFabric: Getter<boolean>,
fixVirtualizeListCollapseWindowSize: Getter<boolean>,
Expand Down Expand Up @@ -132,6 +133,11 @@ export const animatedShouldDebounceQueueFlush: Getter<boolean> = createJavaScrip
*/
export const animatedShouldUseSingleOp: Getter<boolean> = createJavaScriptFlagGetter('animatedShouldUseSingleOp', false);

/**
* Disable debounce queue flush if C++ Native Animated is enabled.
*/
export const cxxAnimatedDebounceQueueFlushDisabled: Getter<boolean> = createJavaScriptFlagGetter('cxxAnimatedDebounceQueueFlushDisabled', false);

/**
* Use the deferred cell render update mechanism for focus change in FlatList.
*/
Expand Down
Loading