Android: Close modal on vertical paging (#46)

This commit is contained in:
Maxim Bolshakov
2020-05-17 15:34:23 +03:00
committed by GitHub
parent c7d862096f
commit 94c77f3869
@@ -96,8 +96,9 @@ const ImageItem = ({
const offsetY = nativeEvent?.contentOffset?.y ?? 0;
if (
Math.abs(velocityY) > SWIPE_CLOSE_VELOCITY &&
offsetY > SWIPE_CLOSE_OFFSET
(Math.abs(velocityY) > SWIPE_CLOSE_VELOCITY &&
offsetY > SWIPE_CLOSE_OFFSET) ||
offsetY > SCREEN_HEIGHT / 2
) {
onRequestClose();
}