mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Fabric has a feature that preallocates views before mounting even need them. We never tested the impact of this feature thought. This diff adds a way to enable/disable it and run an experiment. Changelog: [Internal] Fabric-specific internal change. Reviewed By: JoshuaGross Differential Revision: D24355612 fbshipit-source-id: fefd653e57232044cd7b28b160e12a4ef85dbb8b
37 lines
1.3 KiB
Objective-C
37 lines
1.3 KiB
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <React/RCTDefines.h>
|
|
|
|
RCT_EXTERN NSString *const RCTUserInterfaceStyleDidChangeNotification;
|
|
RCT_EXTERN NSString *const RCTUserInterfaceStyleDidChangeNotificationTraitCollectionKey;
|
|
|
|
/*
|
|
* Allows to enable or disable on-demand view mounting feature of ScrollView.
|
|
* It's an experimental feature that improves performance and memory footprint of huge lists inside ScrollView.
|
|
*/
|
|
RCT_EXTERN BOOL RCTExperimentGetOnDemandViewMounting(void);
|
|
RCT_EXTERN void RCTExperimentSetOnDemandViewMounting(BOOL value);
|
|
|
|
/*
|
|
* Allows to some performance flags to report data synchronously right after the mounting transaction finishes.
|
|
*/
|
|
RCT_EXTERN BOOL RCTExperimentGetSyncPerformanceFlag(void);
|
|
RCT_EXTERN void RCTExperimentSetSyncPerformanceFlag(BOOL value);
|
|
|
|
/*
|
|
* It's an experimental feature that improves performance of hit-testing.
|
|
*/
|
|
RCT_EXTERN BOOL RCTExperimentGetOptimizedHitTesting(void);
|
|
RCT_EXTERN void RCTExperimentSetOptimizedHitTesting(BOOL value);
|
|
|
|
/*
|
|
* Preemptive View Allocation
|
|
*/
|
|
RCT_EXTERN BOOL RCTExperimentGetPreemptiveViewAllocationDisabled(void);
|
|
RCT_EXTERN void RCTExperimentSetPreemptiveViewAllocationDisabled(BOOL value);
|