我有一个使用reanimated-bottom-sheet包创建的底部表,如下所示
<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}
            />
this.bottomSheetRef.current.snapTo(1)我可以使用/打开/关闭底部工作表this.bottomSheetRef.current.snapTo(0)
但是当向下滑动正文/标题时,工作表不会关闭。