fsarmento
fsarmento
I am having the exact same problem. Did anyone found a way to avoid this error and keep the circular reference shown by @nazrdogan ?
Thanks @stevefan1999 ! I followed your instructions and then I did the following commands ``` # cd.. && cd peeqDaycare (my_project) # yarn link "mobx-remotedev" ``` but now I get...
Thanks @stevefan1999, I ended up using [this](https://github.com/dayangdata/mobx-remotedev) fork directly by installing the package as `yarn add mobx-remotedev@dayangdata/mobx-remotedev` (it was also updated to allow mobx4 for react-native)
I have been setting placeholders like this and it works: ``` import { placeholder } from '../assets/images' (...) render() { const imgSource = this.props.imgUri ? { uri: this.props.imgUri } :...
Oh, I see. There is an older issue for that - [#5](https://github.com/DylanVann/react-native-fast-image/issues/5). In the last [comment](https://github.com/DylanVann/react-native-fast-image/issues/5#issuecomment-398090447) there is a workaround using 2 overlapped Images.
Just bumped into this, I would say the cleanest way is to only mount the list if at least on element is available. ``` render() { if (Object.keys(this.props.data).lenght === 0)...
I also get this warning, but if I search in this repo for "isMounted", I find no results... weird
Hi @oprisnik. According to your link, downsampling is enabled with `.setDownsampleEnabled(true)`. I looked in my whole app and in react-native repository and this method is only called in one place,...
Hi, I ended up using [react-native-gesture-handler ](https://github.com/kmagiera/react-native-gesture-handler) instead. You can check my example [here](https://github.com/Fsarmento/react-native-crop-image/blob/master/PreviewAndCrop.js)
Please please @itinance merge @lefoy PR. I also need to have rn-fetch-blob installed to only use scanFile.