how to limit bottom sheet to specific height without closing it?
I want to implement a bottom sheet which uses a drag behaviour (swipe down) to change the height of the bottom sheet.
expected result -
bottom sheet expanded -

bottom sheet collapsed -

I have tried to set this prop - minClosingHeight={250} but it seems to be closing the bottom sheet completely. I have also tried to open the bottom sheet everytime it closes using the onClose callback this way -
onClose={() => {
refRBSheet.current.open();
}}
but this seems to be closing the bottom sheet first and then re-opening it.
actual result:

Is it possible to use the drag behaviour of this bottom sheet to change the height ex. from 250 to 500 when swiping the bottom sheet down? In the collapsed state, it should also be able to come back to the expanded state when swiping up.
i had the same problem any solution ?
+1 any news?
I am also facing the same @nysamnang can u help us out with this issue
<RBSheet ref={refRBSheet} closeOnDragDown={true} closeOnPressMask={false} customStyles={{ wrapper: { backgroundColor: "transparent" }, draggableIcon: { backgroundColor: "#000", width: '20%' }, container: { ...styles.bottom, height: "30%", }, }} >
I Used this. working Fine
container: {
...styles.bottom,
height: "30%",
},