Ver código fonte

Merge pull request #55 from dphov/patch-4

Update README.md
wkh237 8 anos atrás
pai
commit
3c6c926f3e
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      README.md

+ 1
- 1
README.md Ver arquivo

@@ -169,7 +169,7 @@ RNFetchBlob
169 169
     console.log('The file saved to ', res.path())
170 170
     // Beware that when using a file path as Image source on Android,
171 171
     // you must prepend "file://"" before the file path
172
-    imageView = <Image source={{ uri : Platform.OS === 'android' ? 'file://' : '' + res.path() }}/>
172
+    imageView = <Image source={{ uri : Platform.OS === 'android' ? 'file://' + res.path()  : '' + res.path() }}/>
173 173
   })
174 174
 ```
175 175