react-native-img-cache icon indicating copy to clipboard operation
react-native-img-cache copied to clipboard

Image Cache for React Native

Results 50 react-native-img-cache issues
Sort by recently updated
recently updated
newest added

add in package.json "url-parse" and "patch-package". add on the first line of the function getPath: ``` let parsedUrl = new URL(uri, null, true) parsedUrl.set('query', {}) uri = parsedUrl.toString() ``` remember...

my solve way is : ``` if(['.jpg', 'jpeg', '.png', '.bmp', '.gif', '.pcx', '.tiff', '.ico'].indexOf(ext.toLowerCase()) === -1) { ext = '.jpg'; } ``` but I can not submit to github, please...

- Upgrade with latest dependencies `rn-fetch-blob`

I've used react-native-fast-image then I realize that it takes a lot of memory when the images have a huge file size. I want to take a try at this library....

Like below,on ios device. ![image](https://user-images.githubusercontent.com/19790418/29204623-b29f995c-7eaa-11e7-90c9-4b8336494a71.png)

Network

This is an enhancement. some images are not remote, such as '/private/var/mobile/Containers/Data/Application/33750DB7-00A8-4537-837D-7747800EB4B5/tmp/react-native-image-crop-picker/459488B7-E263-4325-95DC-AD539779FBAC.jpg' we can judge if image source is a remote at here. https://github.com/wcandillon/react-native-img-cache/blob/c4ffc423acc006beb7d12827cf2ff7b289e6229c/src/index.tsx#L177 If the image is local, we...

Add downloading verification to address [Issue 80](https://github.com/wcandillon/react-native-img-cache/issues/80)

on: path: immutable === true ? this.getPath(uri, immutable) : undefined getPath if (immutable === true) Why do you want to add the immutable attribute, is it worried that the value...