I have a bottom sheet created using reanimated-bottom-sheet
package as follows
<BottomSheet
ref={this.bottomSheetRef}
snapPoints={[0, 270]}
renderContent={() => <TextEditor/>}
renderHeader={() => <View style={{ height: 70, backgroundColor: 'red' }}><Text>HEADER</Text></View>}
enabledBottomClamp={true}
callbackNode={fall}
enabledInnerScrolling={false}
/>
I can open/close the bottom sheets using this.bottomSheetRef.current.snapTo(1)
/this.bottomSheetRef.current.snapTo(0)
But when swiped down the in body/header the sheet won't close.