also a similar to the way that in angular does
but neither results
mounted() {
let player = this.$refs.player.nativeView
player.on('playbackStartEvent', args => {
console.log('playbackStartEvent executed')
})
},
Update
Finally I have been able to capture the event.
this.player = this.$refs.player.nativeView
but with the following issues
IOS
doesnt work
this.player.on('playbackReadyEvent', () => {
console.log('Video is ready')
})
this.player.on('playbackStartEvent', () => {
console.log('Video has been started.')
})
this.player.on('pausedEvent', () => {
console.log('Video has been paused.')
})
works as expected
this.player.on('finishedEvent', () => {
console.log('Video has been finished.')
})
ANDROID
doesnt work
this.player.on('playbackReadyEvent', () => {
console.log('Video is ready')
})
this.player.on('playbackStartEvent', () => {
console.log('Video has been started.')
})
works as expected
this.player.on('pausedEvent', () => {
console.log('Video has been paused.')
})
this.player.on('finishedEvent', () => {
console.log('Video has been finished.')
})
By the way, thanks to creator for this plugin, its made me possible integrates video player to the project in my job. but please if its possible solution this bugs. regards
i've tried, but didnt work
also a similar to the way that in angular does but neither results
Update
Finally I have been able to capture the event.
this.player = this.$refs.player.nativeView
but with the following issues IOSdoesnt work
works as expected
ANDROID
doesnt work
works as expected
By the way, thanks to creator for this plugin, its made me possible integrates video player to the project in my job. but please if its possible solution this bugs. regards