Merge pull request #141 from perqa/patch-1

Update README.md
This commit is contained in:
Brent Vatne 2016-03-24 19:36:55 -07:00
commit 11fc3fcb45

View File

@ -89,7 +89,7 @@ Seeks the video to the specified time (in seconds). Access using a ref to the co
## Examples
- See an [Example integration][1] in `react-native-login`.
- See an [Example integration][1] in `react-native-login`*.
- Try the included [VideoPlayer example][2] yourself:
```sh
@ -102,6 +102,15 @@ Seeks the video to the specified time (in seconds). Access using a ref to the co
Then `Cmd+R` to start the React Packager, build and run the project in the simulator.
*The example from `react-native-login` does not seem to work in some cases. Try replacing
```
var Video = require('react-native-video');
```
by
```
import Video from 'react-native-video';
```
## TODOS