The4star

Results 3 comments of The4star

I'm having the same issue on android, the bottom sheet won't show at all, works perfectly on ios. ``` "expo": "~51.0.14", "react-native-gesture-handler": "^2.16.2", "@gorhom/bottom-sheet": "^4.6.3", "react-native-reanimated": "~3.10.1", ```

My solution was to use the bottom sheet on ios and go with a seperate custom modal on android.

``` npm install patch-package postinstall-postinstall --save-dev ``` or ``` yarn add patch-package postinstall-postinstall --dev ``` in package.json: ``` "scripts": { "postinstall": "patch-package" } ``` then put the patch file in...