QuevedoIB
QuevedoIB
I'm facing same issue: let tflite = new Tflite(); Results in an empty object without loadModel method. ``` import { NativeModules, Image } from 'react-native'; const { TfliteReactNative } =...
Since react-navigation update to v5.x.x react-native-unimodules no longer work. The installation steps mention: "If you use react-native-navigation, you will need to use its bridgeManagerDelegate option" Is there any guidance on...
Reason I'm not using new ImageData(...) is that it gives me error: This error is related to https://stackoverflow.com/questions/38556730/imagedata-byte-length-is-not-a-multiple-of-4-width which says length of Uint8ClampedArray needs to be the multiple of width,...
Anyways my expectation is that given the following input: (An ImageData given from another source) putImageData should work as expected but it gives the following error: Because it's not an...
My workaround is to initialize with new ImageData(...) and then add the properties to the instance. ``` const handleCanvas = async canvas => { canvas.width = sizes.width; canvas.height = sizes.height;...
This should be reopened since is breaking the base pattern to compose react applications @xile611
Having the same issue, trying to use CRA preset with SCSS preset and getting the exact same error. Did anyone to get them both working together somehow? Or how are...