davidburson
davidburson
I am seeing this issue on Windows when the person who created the sandbox was on a Mac. [This sandbox](https://codesandbox.io/p/sandbox/github/igordanchenko/react-photo-album/tree/main/examples/rows-layout?file=src%2FApp.tsx) opens fine on Mac, but gets the error on Windows.
Here is the complete componentDidUpdate that is working for me. I added the `else if` section: ``` componentDidUpdate() { const initSent = !(this.props.initValue !== 0 && !this.props.initValue); // compare the...
I found on Android I can save the file with a .wav extension by including it in the path that is passed to startRecorder, but the file is not actually...
@dipankar4765 no, for wav on Android I'm using [react-native-audio-record](https://github.com/goodatlas/react-native-audio-record). It's archived, but it is still working for this case for me.
On my iPhone X iOS 16.7.8, the preview is correctly landscape when the Camera is started while the phone is sideways, but the picture it takes is rotated 90 degrees.
Thanks, @mrousavy, but the file:// prefix is already included in `res.path` returned from `const res = await camera.current.takePhoto();` As I tried to explain in my original post, the folder the...
I have a workaround! ``` const destPath = [where you want to store the photo] const res = await camera.current.takePhoto(); // THE WORKAROUND: const sourcePath = Platform.OS === 'ios' ?...
iOS paths do seem weird to me. For example, in your Swift code when a photo is taken, it writes to a path that starts with /private in writeDataToTempFile (in...
My best guess at this point is that I'm passing different parameters to RNVC than you do in ShadowLens, and that somehow the combination of parameters, maybe in conjunction with...
This is the function where I take a photo, from the reproducible code I included with my original post: ```JS const onTakePhotoPress = async () => { if (camera &&...