@react-navigation/stack
Version:
Stack navigator component for iOS and Android with animated transitions and gestures
15 lines (14 loc) • 362 B
JavaScript
export function getInvertedMultiplier(gestureDirection, isRTL) {
switch (gestureDirection) {
case 'vertical':
return 1;
case 'vertical-inverted':
return -1;
case 'horizontal':
return isRTL ? -1 : 1;
case 'horizontal-inverted':
return isRTL ? 1 : -1;
}
}
//# sourceMappingURL=getInvertedMultiplier.js.map
;