nativescript-open-youtube
v1.2.3
Published
Open Youtube app
Downloads
5
Maintainers
Readme
NativeScript Open Youtube
Installation
From the command prompt go to your app's root folder and execute:
tns plugin add nativescript-open-youtube
Usage
JavaScript
// require the plugin
var Youtube = require("nativescript-open-youtube").Youtube;
// instantiate the plugin
var youtube = new Youtube();
youtube.open('VypbgNAsqos');
TypeScript
// require the plugin
import { Youtube } from "nativescript-open-youtube";
// instantiate the plugin
let youtube = new Youtube();
youtube.open('VypbgNAsqos');