mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: changelog: [internal] Ship initial max size on iOS Reviewed By: fkgozali Differential Revision: D30990650 fbshipit-source-id: cf8f202ee862145a6fa9f173c2073096f86015e3
24 lines
724 B
Objective-C
24 lines
724 B
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;
|
|
|
|
/*
|
|
* Preemptive View Allocation
|
|
*/
|
|
RCT_EXTERN BOOL RCTExperimentGetPreemptiveViewAllocationDisabled(void);
|
|
RCT_EXTERN void RCTExperimentSetPreemptiveViewAllocationDisabled(BOOL value);
|
|
|
|
/*
|
|
* Remove clipped subviews
|
|
*/
|
|
RCT_EXTERN BOOL RCTGetRemoveClippedSubviewsEnabled(void);
|
|
RCT_EXTERN void RCTSetRemoveClippedSubviewsEnabled(BOOL value);
|