Browse Source

Merge pull request #55 from dphov/patch-4

Update README.md
wkh237 8 years ago
parent
commit
3c6c926f3e
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      README.md

+ 1
- 1
README.md View File

169
     console.log('The file saved to ', res.path())
169
     console.log('The file saved to ', res.path())
170
     // Beware that when using a file path as Image source on Android,
170
     // Beware that when using a file path as Image source on Android,
171
     // you must prepend "file://"" before the file path
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