mokoshi
mokoshi
It would be great if we could use libraries like `react-native-cached-image` to optimize loading.
Sent a PR for this. https://github.com/react-native-image-picker/react-native-image-picker/pull/1970
I think the problem has only occurred on iOS when I was looking at the issue, but not for sure. Maybe some changes causing the problem were added to Android...
Anyone who face with this problem, try a patch below. ``` diff --git a/node_modules/react-native-image-viewing/dist/components/ImageItem/ImageItem.ios.js b/node_modules/react-native-image-viewing/dist/components/ImageItem/ImageItem.ios.js index 0708505..a0be5c9 100644 --- a/node_modules/react-native-image-viewing/dist/components/ImageItem/ImageItem.ios.js +++ b/node_modules/react-native-image-viewing/dist/components/ImageItem/ImageItem.ios.js @@ -57,7 +57,7 @@ const ImageItem = ({...
When you migrate existing RN projects, don't forget to change the main module name which is specified in native codes. (`getJSMainModuleName()` in `MainApplication.java` on Android, and `jsBundleURLForBundleRoot` in `AppDelegate.m` on...