UNPKG

react-native-zoom-toolkit

Version:

Most complete set of pinch to zoom utilites for React Native

13 lines (10 loc) 252 B
type ScrollOptions = { index: number; itemSize: number; gap: number; }; export const getScrollPosition = (options: ScrollOptions): number => { 'worklet'; const { index, itemSize, gap } = options; return index * itemSize + index * gap; };