We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b939c0 commit 6c3c583Copy full SHA for 6c3c583
src/components/slider/types.ts
@@ -101,6 +101,18 @@ export type SliderProps = Omit<ThumbProps, 'ref'> & {
101
* Whether to use the new Slider implementation using Reanimated
102
*/
103
migrate?: boolean;
104
+ /**
105
+ * Whether the thumb will have a shadow. default is true. (only when migrate = true)
106
+ */
107
+ enableThumbShadow?: boolean;
108
109
+ * Disabled thumb tint color (only when migrate = true)
110
111
+ disabledThumbTintColor?: string;
112
113
+ * Control the throttle time of the onValueChange and onRangeChange callbacks (only when migrate = true)
114
115
+ throttleTime?: number;
116
};
117
118
export enum GradientSliderTypes {
0 commit comments