| 14 | }>; |
| 15 | |
| 16 | export interface NativeProps extends ViewProps { |
| 17 | accessibilityUnits?: string; |
| 18 | accessibilityIncrements?: ReadonlyArray<string>; |
| 19 | disabled?: WithDefault<boolean, false>; |
| 20 | inverted?: WithDefault<boolean, false>; |
| 21 | vertical?: WithDefault<boolean, false>; |
| 22 | tapToSeek?: WithDefault<boolean, false>; |
| 23 | maximumTrackImage?: ImageSource; |
| 24 | maximumTrackTintColor?: ColorValue; |
| 25 | maximumValue?: Double; |
| 26 | minimumTrackImage?: ImageSource; |
| 27 | minimumTrackTintColor?: ColorValue; |
| 28 | minimumValue?: Double; |
| 29 | onChange?: BubblingEventHandler<Event>; |
| 30 | onRNCSliderSlidingStart?: DirectEventHandler<Event>; |
| 31 | onRNCSliderSlidingComplete?: DirectEventHandler<Event>; |
| 32 | onRNCSliderValueChange?: BubblingEventHandler<Event>; |
| 33 | step?: Double; |
| 34 | testID?: string; |
| 35 | thumbImage?: ImageSource; |
| 36 | thumbTintColor?: ColorValue; |
| 37 | thumbSize?: Float; |
| 38 | trackImage?: ImageSource; |
| 39 | value?: Float; |
| 40 | lowerLimit?: Float; |
| 41 | upperLimit?: Float; |
| 42 | } |
| 43 | |
| 44 | export default codegenNativeComponent<NativeProps>('RNCSlider', { |
| 45 | interfaceOnly: true, |
nothing calls this directly
no outgoing calls
no test coverage detected