react-native-reanimated-bottom-sheet icon indicating copy to clipboard operation
react-native-reanimated-bottom-sheet copied to clipboard

enabledGestureInteraction Prop

Open tnoct opened this issue 2 years ago • 0 comments

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={} /> `</>```

tnoct avatar Jun 12 '22 00:06 tnoct