lesliesam / react-native-wheel-picker

338 stars 321 forks source link

WheelPicker not working inside a ScrollView #71

Open prateekchachra opened 4 years ago

prateekchachra commented 4 years ago

WheelPicker doesn't work inside a ScrollView component. If I were to put it inside a ScrollView it doesn't scroll down.

Prasiddha22 commented 1 year ago

Sorry for the late reply but one workaround can be:

const [scrollEnabled, setScrollEnabled] = useState(true);

return ( <ScrollView ... scrollEnabled={scrollEnabled} > <TimePicker ... onScroll={(val)=>{setScrollEnabled(!val)}} /> )