mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
fafd64e9c3
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/43350 Changelog: [internal] Mount hooks have been shipped on iOS, so this removes the flag for them. On Android, we're still testing them so it's worth moving them to the new system and scoping them to that platform. Reviewed By: sammy-SC Differential Revision: D54587740 fbshipit-source-id: d074927fee1a967bd3928970c31975d07cd393bb
21 lines
692 B
C++
21 lines
692 B
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "CoreFeatures.h"
|
|
|
|
namespace facebook::react {
|
|
|
|
bool CoreFeatures::enablePropIteratorSetter = false;
|
|
bool CoreFeatures::cacheLastTextMeasurement = false;
|
|
bool CoreFeatures::enableGranularScrollViewStateUpdatesIOS = false;
|
|
bool CoreFeatures::enableGranularShadowTreeStateReconciliation = false;
|
|
bool CoreFeatures::enableClonelessStateProgression = false;
|
|
bool CoreFeatures::excludeYogaFromRawProps = false;
|
|
bool CoreFeatures::enableReportEventPaintTime = false;
|
|
|
|
} // namespace facebook::react
|