MCPcopy Index your code
hub / github.com/callstack/react-native-slider / NativeProps

Interface NativeProps

package/src/RNCSliderNativeComponent.ts:16–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}>;
15
16export 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
44export default codegenNativeComponent<NativeProps>('RNCSlider', {
45 interfaceOnly: true,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected