瀏覽代碼

Merge pull request #55 from dphov/patch-4

Update README.md
wkh237 8 年之前
父節點
當前提交
3c6c926f3e
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      README.md

+ 1
- 1
README.md 查看文件

@@ -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