react-native-screen-transitions
Version:
Easy screen transitions for React Native and Expo
12 lines (10 loc) • 324 B
JavaScript
/**
* Utility function to map raw gesture translation to a progress value.
*/
export const mapGestureToProgress = (translation, dimension) => {
"worklet";
const rawProgress = translation / dimension;
return Math.max(0, Math.min(1, rawProgress));
};
//# sourceMappingURL=map-gesture-to-progress.js.map
;