nativescript-videoplayer
nativescript-videoplayer copied to clipboard
Create a Video object and play programatically [Question]
I did this
import { Video } from 'nativescript-videoplayer';
this.player = new Video();
this.player.src = 'valid video url';
this.player.play();
Does it need to be visible to play?