Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to add swipe down when using react navigation presentation fullscreenmodal?

I use react navigation and want to show a full screen modal. Then I have seen this post:

Modal navigation

it works great, but can I close the modal when swiping down ? is it possible ? And when yes how I do it ?

like image 471
universe11 Avatar asked Oct 25 '25 04:10

universe11


1 Answers

what you can do, instead of using presentable: 'fullscreenmodal' use a normal screen with

<Stack.Screen
    name='preview/[id]'
    options={{
      animation: 'slide_from_bottom',
      headerShown: false,
      gestureDirection: 'vertical',
    }}
  />
like image 140
Aman Chhabra Avatar answered Oct 26 '25 22:10

Aman Chhabra



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!