react-native-zoom-toolkit
Version:
Most complete set of pinch to zoom utilites for React Native
18 lines (16 loc) • 363 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getScrollPosition = void 0;
const getScrollPosition = options => {
'worklet';
const {
index,
itemSize,
gap
} = options;
return index * itemSize + index * gap;
};
exports.getScrollPosition = getScrollPosition;
//# sourceMappingURL=getScrollPosition.js.map
;