Closed latekvo closed 1 week ago
As of 1ebcfa4, I'm not aware of any bugs that haven't been fixed already. In the following days I will test some minor parts of the component, like type compatibility with the legacy version, if it works when exported into a real app and not just an example package, etc. Regardless, as of now it is ready to review.
Also, on web tapping does not close drawer
Description
This PR adds
ReanimatedDrawerLayout
component.Test plan
Collapsed code - legacy component preview
```js import React, { useRef } from 'react'; import { StyleSheet, Text, View } from 'react-native'; import { Gesture, GestureDetector, DrawerLayout, } from 'react-native-gesture-handler'; import { SharedValue } from 'react-native-reanimated'; const DrawerPage = ({ progress }: { progress?: SharedValue }) => { progress && console.log('Drawer opening progress:', progress); return