npm i --save nativescript-open-youtube
- Version: 1.2.3
- GitHub: https://github.com/brunoziie/nativescript-open-youtube
- NPM: https://www.npmjs.com/package/nativescript-open-youtube
- Downloads:
- Last Day: 0
- Last Week: 0
- Last Month: 0
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');