mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
ca7eb14682
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/20456 Differential Revision: D9061113 Pulled By: hramos fbshipit-source-id: 4a8afa63dd00be60cb8d622a6929c5f3bef4c20c
26 lines
575 B
Objective-C
26 lines
575 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTViewComponentView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* `UIScrollView` subclass which has some improvements and tweaks
|
|
* wich are not directly related to React.
|
|
*/
|
|
@interface RCTEnhancedScrollView : UIScrollView
|
|
|
|
@property (nonatomic, assign) BOOL pinchGestureEnabled;
|
|
@property (nonatomic, assign) BOOL centerContent;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|