react-native-lucy-radial-slider
Version:
React Native component to select or highlight a specific value from a range of values
43 lines (42 loc) • 1.04 kB
TypeScript
export declare const defaultProps: {
radius: number;
min: number;
max: number;
step: number;
value: number;
title: string;
subTitle: string;
unit: string;
thumbRadius: number;
thumbColor: string;
thumbBorderWidth: number;
thumbBorderColor: string;
markerLineSize: number;
sliderWidth: number;
sliderTrackColor: string;
lineColor: string;
lineSpace: number;
linearGradient: {
offset: string;
color: string;
}[];
strokeColor: string;
onChange: (_v: number) => void;
onComplete: (_v: number) => void;
openingRadian: number;
disabled: boolean;
isHideSlider: boolean;
isHideTitle: boolean;
isHideSubtitle: boolean;
isHideValue: boolean;
isHideTailText: boolean;
isHideButtons: boolean;
isHideLines: boolean;
isHideMarkerLine: boolean;
isHideCenterContent: boolean;
isHideStroke: boolean;
isHideThumb: boolean;
fixedMarker: boolean;
variant: string;
markerValueInterval: number;
};