react-native-multi-slider icon indicating copy to clipboard operation
react-native-multi-slider copied to clipboard

valuePrefix & valueSuffix don't work.

Open StarryFire opened this issue 4 years ago • 1 comments

I was expecting to see the prefix passed as prop, prefixed to the value displayed in the label but it doesn't show. I don't think there is any such functionality provided in the code either.

StarryFire avatar May 04 '20 14:05 StarryFire

It's passed inside the CustomMarker.In my case CustomMarker required prefix and suffix.Something like

const CustomMarker = ({
  currentValue,
  valueSuffix,
  valuePrefix,
}: {
  currentValue: any;
  valueSuffix: string;
  valuePrefix:string;
}) => {}

chandansingh01 avatar Jul 15 '21 12:07 chandansingh01