[Video] Implement setNativeProps
This commit is contained in:
parent
d174b1a465
commit
63a860e85f
10
Video.js
10
Video.js
@ -31,6 +31,10 @@ class Video extends Component {
|
|||||||
this._onEnd = this._onEnd.bind(this);
|
this._onEnd = this._onEnd.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setNativeProps(nativeProps) {
|
||||||
|
this._root.setNativeProps(nativeProps);
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { seekTime } = this.state;
|
const { seekTime } = this.state;
|
||||||
const {
|
const {
|
||||||
@ -75,7 +79,11 @@ class Video extends Component {
|
|||||||
onVideoEnd: this._onEnd,
|
onVideoEnd: this._onEnd,
|
||||||
});
|
});
|
||||||
|
|
||||||
return <RCTVideo ref={ref} {...nativeProps} />;
|
return (
|
||||||
|
<RCTVideo
|
||||||
|
ref={ component => this._root = component }
|
||||||
|
{...nativeProps} />
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
seek(time) {
|
seek(time) {
|
||||||
|
Loading…
Reference in New Issue
Block a user