UNPKG

react-native-zoom-toolkit

Version:

Most complete set of pinch to zoom utilites for React Native

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