mrousavy / react-native-vision-camera
- воскресенье, 8 августа 2021 г. в 00:27:38
📸 The Camera library that sees the vision.
See the example app
function App() {
const devices = useCameraDevices('wide-angle-camera')
const device = devices.back
if (device == null) return <LoadingView />
return (
<Camera
style={StyleSheet.absoluteFill}
device={device}
isActive={true}
/>
)
}