I am trying to implement bottom sheet in react native with npm package reanimated-bottom-sheet but swipe down gesture handler is not working
import statements import * as React from 'react'; import { StyleSheet, Text, View, Button } from 'react-native'; import Animated from 'react-native-reanimated'; import BottomSheet from 'reanimated-bottom-sheet'; main app function export default function App() { const renderContent = () => ( <View…