LogoCraftReactNative
Components

SliderDual

A slider component that allows users to select a range of values. It displays a horizontal bar with 2 sliding knobs that can be dragged to set the range.

Component preview

Usage

Screen.tsx
import { SliderDual } from "@/craftrn-ui/components/SliderDual";
 
export const Screen = () => (
  <SliderDual
    min={0}
    max={100}
    onValuesChange={({ min, max }) => {
      console.log("min value:", min);
      console.log("max value:", max);
    }}
  />
);

Props

PropTypeDefault
min
number
0
max
number
100
minInitialValue?
number
min
maxInitialValue?
number
max
width?
number
300
onValuesChange
({ min, max }: { min: number; max: number; }) => void
-

On this page