githuboftigran / rn-range-slider

A native slider with range
MIT License
234 stars 130 forks source link

slider is not working in modal #139

Open skjangid opened 1 year ago

skjangid commented 1 year ago

I am using this slider in modal box not working.

rhadamez commented 1 year ago

Same.

amorimlucas commented 1 year ago

Same issue for me.

abdul-ahad-101 commented 1 year ago

Any updates on this issue? @skjangid

Caliman-Nicolae commented 1 year ago

Update package manually

PanResponder.create({
   onStartShouldSetPanResponderCapture: trueFunc, // update this to trueFunc
})

It will work inside modal @abdul-ahad-101

hellotreedigital commented 1 year ago

Worked by updating the package code manually and changing onStartShouldSetPanResponderCapture to trueFunc as per @Caliman-Nicolae reply

File index.tsx:

Changed: onStartShouldSetPanResponderCapture: falseFunc,

To: onStartShouldSetPanResponderCapture: trueFunc,

princeKasodariya commented 1 year ago

Same issue for me.