UNPKG

react-native-zoom-toolkit

Version:

Most complete set of pinch to zoom utilites for React Native

9 lines (8 loc) 285 B
export const getMaxScale = (canvasSize, resolution) => { 'worklet'; if (resolution.width > resolution.height) { return Math.max(1, resolution.width / canvasSize.width); } return Math.max(1, resolution.height / canvasSize.height); }; //# sourceMappingURL=getMaxScale.js.map