Stephen Saucier
Stephen Saucier
@SocDario The solution I posted works 90% of the time, but there are a couple of iPhone models which do not properly report the resolution, so I have stopped using...
You're right that it's not documented well. It does seem to be working everywhere, though. I'll post my new version tomorrow.
```tsx const actOnBestFitCode = useCallback( (data: Code[], frame: CodeScannerFrame) => { if (!frame.width || !frame.height) return; const frameLongSide = Math.max(frame.width, frame.height); const frameShortSide = Math.min(frame.width, frame.height); const foundCodes = data.filter(code...
With storyshots now, it's getting kicked out by ContainerDimensions directly - `At least one element required.`
+1 Orbit disabling vertical scrolling is a significant oversight.
I [had this working](https://github.com/mrousavy/react-native-vision-camera/issues/2125#issuecomment-1828065281) a few months ago, but it stopped working in a release since then (center box shrunk & moved for some phones), so I've had it disabled....
I'm getting the same thing on my Android device when using `enableHighAccuracy: true`. No `success` or `error` callback is ever called on the Android device. However, when I use `enableHighAccuracy:...
The issue I'm running into with `requeueJob` is that I get job.payload as an `object` in the `onFailure` callback, but when I try to `requeueJob` it, I get "Value for...
The above is for Android, specifically. I have not tried on iOS.
This does not work either.