Pārlūkot izejas kodu

Fix README (#501)

remove extra space
Kota Furusawa 8 gadus atpakaļ
vecāks
revīzija
821eeb0f9d
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1
    1
      README.md

+ 1
- 1
README.md Parādīt failu

236
     console.log('The file saved to ', res.path())
236
     console.log('The file saved to ', res.path())
237
     // Beware that when using a file path as Image source on Android,
237
     // Beware that when using a file path as Image source on Android,
238
     // you must prepend "file://"" before the file path
238
     // you must prepend "file://"" before the file path
239
-    imageView = <Image source={{ uri : Platform.OS === 'android' ? 'file://' + res.path()  : '' + res.path() }}/>
239
+    imageView = <Image source={{ uri : Platform.OS === 'android' ? 'file://' + res.path() : '' + res.path() }}/>
240
   })
240
   })
241
 ```
241
 ```
242
 
242