react-native-draggable-flatlist
react-native-draggable-flatlist copied to clipboard
iOS 13 issue. Dragging an item drags the whole view for modal views
Dragging an item, drags the whole view in iOS 13 when the view is presented as modal.
Dragging down closes the view. dragging issue.mov.zip
A workaround is to disable iOS 13 presentation style by in the modal UIViewController implementation:
by setting the presentation style to full form.
if (@available(iOS 13, *)) { self.modalPresentationStyle = UIModalPresentationFullScreen; }
facing the same issues. Any other workaround?