mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-13 00:08:05 +08:00
Summary: Objective-C side of the Fabric-compatible slider component for iOS. Reviewed By: mdvacca Differential Revision: D13745263 fbshipit-source-id: 647631d6fc86f81a5d4f735c507636ed9c468093
22 lines
419 B
Objective-C
22 lines
419 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 <UIKit/UIKit.h>
|
|
|
|
#import <React/RCTViewComponentView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* UIView class for root <Slider> component.
|
|
*/
|
|
@interface RCTSliderComponentView : RCTViewComponentView
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|