ソースを参照

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