UNPKG

react-native-zoom-toolkit

Version:

Smoothly zoom any image, video or component you want!

17 lines (16 loc) 450 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.useVector = void 0; var _reactNativeReanimated = require("react-native-reanimated"); const useVector = (x, y) => { const first = (0, _reactNativeReanimated.useSharedValue)(x); const second = (0, _reactNativeReanimated.useSharedValue)(y ?? x); return { x: first, y: second }; }; exports.useVector = useVector; //# sourceMappingURL=useVector.js.map