UNPKG

react-native-zoom-toolkit

Version:

Most complete set of pinch to zoom utilites for React Native

22 lines (20 loc) 485 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.fitContainer = void 0; const fitContainer = (aspectRatio, container) => { 'worklet'; let width = container.width; let height = container.width / aspectRatio; if (height > container.height) { width = container.height * aspectRatio; height = container.height; } return { width, height }; }; exports.fitContainer = fitContainer; //# sourceMappingURL=fitContainer.js.map