[Video] Implement setNativeProps

This commit is contained in:
Baris Sencan 2015-11-09 17:55:39 -08:00
parent d174b1a465
commit 63a860e85f

View File

@ -31,6 +31,10 @@ class Video extends Component {
this._onEnd = this._onEnd.bind(this);
}
setNativeProps(nativeProps) {
this._root.setNativeProps(nativeProps);
}
render() {
const { seekTime } = this.state;
const {
@ -75,7 +79,11 @@ class Video extends Component {
onVideoEnd: this._onEnd,
});
return <RCTVideo ref={ref} {...nativeProps} />;
return (
<RCTVideo
ref={ component => this._root = component }
{...nativeProps} />
);
}
seek(time) {