UNPKG

@exodus/react-navigation-stack

Version:

Stack navigator component for iOS and Android with animated transitions and gestures

17 lines (14 loc) 419 B
import { I18nManager } from 'react-native'; export default function getInvertedMultiplier(gestureDirection) { switch (gestureDirection) { case 'vertical': return 1; case 'vertical-inverted': return -1; case 'horizontal': return I18nManager.isRTL ? -1 : 1; case 'horizontal-inverted': return I18nManager.isRTL ? 1 : -1; } } //# sourceMappingURL=getInvertedMultiplier.js.map