UNPKG

react-native-zoom-toolkit

Version:

Most complete set of pinch to zoom utilites for React Native

10 lines 267 B
import { useSharedValue } from 'react-native-reanimated'; export const useSizeVector = (x, y) => { const first = useSharedValue(x); const second = useSharedValue(y); return { width: first, height: second }; }; //# sourceMappingURL=useSizeVector.js.map