UNPKG

@quidone/react-native-wheel-picker

Version:

Picker is a UI component for selecting an item from a list of options.

12 lines (11 loc) 279 B
"use strict"; export const getPageIndex = (offset, { maxIndex, pageLength }) => { let index = Math.floor((offset + pageLength / 2) / pageLength); index = Math.max(0, index); index = Math.min(index, maxIndex); return index; }; //# sourceMappingURL=getPageIndex.js.map