UNPKG

react-native-vision-camera

Version:

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

11 lines (10 loc) 300 B
import { useEffect } from 'react'; export function useTorchModeUpdater(controller, torchMode) { useEffect(() => { if (controller == null) return; if (torchMode == null) return; controller.setTorchMode(torchMode); }, [controller, torchMode]); }