UNPKG

react-native-vision-camera

Version:

VisionCamera is the fastest and most powerful Camera for react-native.

13 lines (12 loc) 340 B
import { useMemo } from 'react'; import { VisionCamera } from '../../VisionCamera'; export function useOrientationManager(source) { return useMemo(() => { if (source != null) { return VisionCamera.createOrientationManager(source); } else { return undefined; } }, [source]); }