react-native-draggable-flatlist icon indicating copy to clipboard operation
react-native-draggable-flatlist copied to clipboard

iOS 13 issue. Dragging an item drags the whole view for modal views

Open amit-weatherbug opened this issue 5 years ago • 1 comments

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; }

amit-weatherbug avatar Nov 20 '19 04:11 amit-weatherbug

facing the same issues. Any other workaround?

atoool avatar Jul 21 '22 10:07 atoool