how to make component dragable on modal.
drag components work perfectly in screen, but when I put a component in the modal, it makes it non-dragged
package.json
{
...,
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.3.tar.gz",
"expo": "~39.0.2",
"react-native-drax": "^0.7.2",
....
}
import {
View, Modal
} from 'react-native'
<Modal
animationType="slide"
transparent={false}
visible={true}
>
<DraxProvider>
<DraxScrollView>
<DraxView ...... />
<DraxView ...... />
<DraxView ...... />
<DraxView ...... />
</DraxScrollView>
</DraxProvider>
</Modal>
how to make component dragable on modal.
drag components work perfectly in screen, but when I put a component in the modal, it makes it non-dragged
package.json