react-native-reanimated-bottom-sheet
react-native-reanimated-bottom-sheet copied to clipboard
enabledGestureInteraction Prop
enabledGestureInteraction is not working in Android as i swipe the sheet downward.
<> <View style={{ flex: 1, backgroundColor: 'papayawhip', alignItems: 'center', justifyContent: 'center', }}> <Button title="Open Bottom Sheet" onPress={() => sheetRef.current.snapTo(1)} /> </View> <BottomSheet ref={sheetRef} snapPoints={[450, 300, 0]} initialSnap={2} borderRadius={20} callbackNode={fall} // enabledContentGestureInteraction={true} enabledGestureInteraction={true} renderContent={renderContent} // renderHeader={} /> `</>```