mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Refactor ReactNativeFeatureFlags
Summary: Refactor ReactNativeFeatureFlags changelog: [internal] internal Reviewed By: javache Differential Revision: D41750644 fbshipit-source-id: 43fdd7758e68a578afdb799488fda9f8bdf0ddb4
This commit is contained in:
committed by
Facebook GitHub Bot
parent
57ffa12a08
commit
1a514e514b
@@ -39,10 +39,10 @@ export type FeatureFlags = {|
|
||||
*/
|
||||
animatedShouldUseSingleOp: () => boolean,
|
||||
/**
|
||||
* This feature flag enables an experimental render system that allows
|
||||
* to render react components driven by classes written in C++.
|
||||
* This feature flag enables an experimental rendering of react native
|
||||
* components that are implemented in C++.
|
||||
*/
|
||||
enableCppRenderSystem: () => boolean,
|
||||
enableCppComponents: () => boolean,
|
||||
|};
|
||||
|
||||
const ReactNativeFeatureFlags: FeatureFlags = {
|
||||
@@ -51,7 +51,7 @@ const ReactNativeFeatureFlags: FeatureFlags = {
|
||||
shouldPressibilityUseW3CPointerEventsForHover: () => false,
|
||||
animatedShouldDebounceQueueFlush: () => false,
|
||||
animatedShouldUseSingleOp: () => false,
|
||||
enableCppRenderSystem: () => false,
|
||||
enableCppComponents: () => false,
|
||||
};
|
||||
|
||||
module.exports = ReactNativeFeatureFlags;
|
||||
|
||||
Reference in New Issue
Block a user