Bump version for onEnd callback

This commit is contained in:
Brent Vatne 2015-04-11 14:38:42 -07:00
parent 9f5aa72d94
commit 25628d9877
5 changed files with 8 additions and 4 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
node_modules/**/*
RCTVideo.xcodeproj/xcuserdata/**/*
RCTVideo.xcodeproj/project.xcworkspace/**/*
Examples/VideoPlayer/node_modules/**/*

View File

@ -11,6 +11,7 @@ var {
Text,
View,
TouchableOpacity,
AlertIOS,
} = React;
var Video = require('react-native-video');
@ -95,6 +96,7 @@ var VideoPlayer = React.createClass({
resizeMode={this.state.resizeMode}
onLoad={this.onLoad}
onProgress={this.onProgress}
onEnd={() => { AlertIOS.alert('Done!') }}
repeat={true} />
</TouchableOpacity>

View File

@ -7,6 +7,6 @@
},
"dependencies": {
"react-native": "0.3.10",
"react-native-video": "^0.2.6"
"react-native-video": "^0.2.7"
}
}

View File

@ -34,7 +34,9 @@ A <Video> component for react-native, as seen in
paused={false} // Pauses playback entirely.
resizeMode="cover" // Fill the whole screen at aspect ratio.
repeat={true} // Repeat forever.
onEnd={this._onEnd} // handle end of playback
onLoad={this.setDuration} // Callback when video loads
onProgress={this.setTime} // Callback every ~250ms with currentTime
onEnd={this.onEnd} // Callback when playback finishes
style={styles.backgroundVideo} />
// Later on in your styles..
@ -57,5 +59,4 @@ Example code [here](https://github.com/brentvatne/react-native-login/blob/master
- [ ] Add support for captions
- [ ] Support `require('video!...')`
- [ ] Add support for playing multiple videos in a sequence (will interfere with current `repeat` implementation)
- [x] Add `onComplete` callback for when it finishes playing
- [ ] Callback to get buffering progress for remote videos

View File

@ -1,6 +1,6 @@
{
"name": "react-native-video",
"version": "0.2.7",
"version": "0.2.8",
"description": "A <Video /> element for react-native",
"main": "Video.ios.js",
"author": "Brent Vatne <brentvatne@gmail.com> (https://github.com/brentvatne)",