Changes to README

This commit is contained in:
NishanthShankar 2015-06-25 19:24:47 +05:30
parent a435efe3d0
commit 1ca19bf410

View File

@ -30,9 +30,11 @@ Requires react-native >= 0.4.4
paused={false} // Pauses playback entirely.
resizeMode="cover" // Fill the whole screen at aspect ratio.
repeat={true} // Repeat forever.
onLoadStart={this.loadStart} // Callback when video starts to load
onLoad={this.setDuration} // Callback when video loads
onProgress={this.setTime} // Callback every ~250ms with currentTime
onEnd={this.onEnd} // Callback when playback finishes
onError={this.videoError} // Callback when video cannot be loaded
style={styles.backgroundVideo} />
// Later on in your styles..
@ -46,6 +48,11 @@ var styles = Stylesheet.create({
},
});
```
## Static Methods
`seek(seconds)`
Seeks the video to the specified time (in seconds). Access using a ref to the component
## Examples