react-native-reanimated-bottom-sheet icon indicating copy to clipboard operation
react-native-reanimated-bottom-sheet copied to clipboard

Close outside press

Open ZahraMirali opened this issue 4 years ago • 2 comments

I want to close Bottom Sheet when press outside like in instagram

ZahraMirali avatar May 04 '20 11:05 ZahraMirali

Hi! I made this Snack - give it a try on Expo or use this Gist

Hope it helps!

vforvasile avatar May 23 '20 14:05 vforvasile

<BottomSheet
  //...
  onOpenStart={() => {
    setIsOpenSheet(true);
  }}
  onCloseEnd={() => {
    setIsOpenSheet(false);
  }}
/>
{isOpenSheet && renderShadow()}

3runoDesign avatar Jan 09 '22 11:01 3runoDesign