mirror of
https://github.com/status-im/react-native-image-viewing.git
synced 2026-08-30 19:31:10 +00:00
Android: Close modal on vertical paging (#46)
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user