You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In react-native-snap-carousel the ScrollView and FlatList implementations are hard coded to the ones provides by "react-native".
Can we add a prop to allow users to provide their own wrapped versions of ScrollView and FlatList, similar to how FlatList allows you to provide a wrapped implementation of ScrollView using the renderScrollComponent prop.
This would allow users to use the wrapped FlatList and ScrollView provided by react-native-gesture-handler.
Background
react-native-gesture-handler allows you to specify a waitFor prop on a ScrollView that tells the ScrollView to wait for other gesture handlers to become active or not. For example there could be a Slider component within a horizontal scrollview.
The text was updated successfully, but these errors were encountered:
In react-native-snap-carousel the
ScrollView
andFlatList
implementations are hard coded to the ones provides by "react-native".Can we add a prop to allow users to provide their own wrapped versions of
ScrollView
andFlatList
, similar to howFlatList
allows you to provide a wrapped implementation ofScrollView
using therenderScrollComponent
prop.This would allow users to use the wrapped FlatList and ScrollView provided by
react-native-gesture-handler
.Background
react-native-gesture-handler
allows you to specify awaitFor
prop on aScrollView
that tells the ScrollView to wait for other gesture handlers to become active or not. For example there could be a Slider component within a horizontal scrollview.The text was updated successfully, but these errors were encountered: