update react-native-video to 4.* (#1148)

This commit is contained in:
Alexander T 2019-10-09 18:26:31 +03:00 коммит произвёл Brent Erickson
Родитель 89c3c1710b
Коммит 7134574b3e
3 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -10,7 +10,7 @@
},
"dependencies": {
"lodash": "^4.17.11",
"react-native-video": "2.3.1"
"react-native-video": "^4.4.4"
},
"peerDependencies": {
"react": "^16.0",

Просмотреть файл

@ -44,6 +44,7 @@ class Video extends RX.Component<Types.VideoProps, VideoState> {
repeat={ this.props.loop }
source={ source }
style={ this.props.style }
useTextureView={ false }
onEnd={ this._onEnd }
onBuffer={ this._onBuffer }
onLoadStart={ this.props.onLoadStart}

Просмотреть файл

@ -56,6 +56,7 @@ declare module 'react-native-video' {
controls?: boolean;
currentTime?: number;
progressUpdateInterval?: number;
useTextureView?: boolean;
onLoadStart?: () => void;
onLoad?: (info: VideoInfo) => void;
onBuffer?: (bufferInfo: VideoBufferInfo) => void;