You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 23, 2023. It is now read-only.
I use these modules:
"react-native": "0.70.6",
"react-native-vision-camera": "^2.15.2",
"vision-camera-code-scanner": "^0.2.0"
And the app crashes without a warning or an error on the console!
P.S. I have asked for camera permission earlier in the app.
Here is my code :
import { useScanBarcodes, BarcodeFormat } from 'vision-camera-code-scanner';
import TextRecognition from '@react-native-ml-kit/text-recognition';
const App = () => {
const devices = useCameraDevices();
const device = devices.back;
const camera = useRef(null);
return
}