mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 13:01:13 +00:00
0d14d0f1ce
Summary: public * No longer sends events when not observing valueChanged. * Snaps to step value while dragging. * Added additional example to UIExplorer. Reviewed By: javache Differential Revision: D2595594 fb-gh-sync-id: 1e92427d2ab2e71e4eb4a9a7a75cd0f5f4a3a529
23 lines
624 B
Objective-C
23 lines
624 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "RCTComponent.h"
|
|
|
|
@interface RCTSlider : UISlider
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onValueChange;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onSlidingComplete;
|
|
|
|
@property (nonatomic, assign) float step;
|
|
@property (nonatomic, assign) float lastValue;
|
|
|
|
@end
|