react-native-modals
react-native-modals copied to clipboard
Can not scroll Flat-list inside modal (ios only)
As describe, I can not scroll items of Flat-list (also ScrollView) inside Modal. This only happen on IOS (14.5 currently).
I also have this problem
I also have the same problem
Hey everyone I found a fix based on the maintainers response above. Just wrap your content directly inside the ScrollView with TouchableOpacity:
<ScrollView>
<TouchableOpacity activeOpacity={.99}>
{...modalchildren}
</TouchableOpacity>
</ScrollView>
Hey everyone I found a fix based on the maintainers response above. Just wrap your content directly inside the ScrollView with TouchableOpacity:
<ScrollView> <TouchableOpacity activeOpacity={.99}> {...modalchildren} </TouchableOpacity> </ScrollView>
How about TouchableWithoutFeedback
? Have you tried it yet?
I also have the same problem