'FlatList not working inside BottomSheet on Android

I am using gorhom/react-native-bottom-sheet

The issue I am facing:

I have a FlatList inside a BottomSheet, I am able to scroll in FlaLlist on ios but it is not working on android.



Solution 1:[1]

Using raw-bottom-sheet raw-bottom-sheet and set "dragFromTopOnly" as true, and any touch operation can be performed i will mention example below:

 <RBSheet
        ref={refRBSheet}
        dragFromTopOnly={true}
        customStyles={{
          wrapper: {
            backgroundColor: "transparent"
          },
          draggableIcon: {
            backgroundColor: "#000"
          }
        }}
      >`

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Parikshit Sharma