UNPKG

react-native-zoom-toolkit

Version:

Most complete set of pinch to zoom utilites for React Native

15 lines (14 loc) 344 B
export 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 }; }; //# sourceMappingURL=fitContainer.js.map