Logan King (DarkComet)

Results 6 comments of Logan King (DarkComet)

I believe you have to set enablePanDownToClose prop equal to false because it is true by default. ``` return ( {Your stuff} ) ```

Instead of importing BottomSheetModal and BottomSheetModalProvider separately, just do: ``` import BottomSheet from "@gorhom/bottom-sheet" ``` Then, make sure ref is referencing an active component. So you use the ref prop...

It likely is unmounted and then goes back to the default index value that is set for the index prop. I answered another issue and it may have the same...

Try using either the ref method snapToIndex( ) or snapToPosition( ) instead of expand( ). Then, do bottomSheetRef?.current?.snapToIndex(0), since you only have two indexes -1 for close and 0 for...

I found a workaround that you can use, until or if they add it. What you can modify is the "resistance" using a custom animation (look at examples on repository...

I found a way to accomplish this using customAnimation prop. You set it to run a function when the animation value is above a certain threshold and then set a...