GithubHelp home page GithubHelp logo

imperatormk / nativescript-youtubeplayer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from triniwiz/nativescript-youtubeplayer

1.0 1.0 0.0 4.53 MB

License: Apache License 2.0

Shell 4.35% TypeScript 85.66% HTML 2.72% CSS 3.00% Ruby 0.38% Vue 2.58% JavaScript 1.32%

nativescript-youtubeplayer's Introduction

NativeScript YoutubePlayer

npm npm Build Status

Installation

NativeScript 4x

  • tns plugin add nativescript-youtubeplayer

NativeScript 3x

Configuration

Android

Api key follow โžก link to get your api key

Usage

XML

IMPORTANT: Make sure you include xmlns:ui="nativescript-youtubeplayer" on the Page element

<ui:YoutubePlayer id="player" apiKey="AIzaSyCDH3BGQZT2ebUfSE8D3I8NLqaCPu4FRh0" src="{{src}}" height="250" width="100%" backgroundColor="gray" />

Angular

import { YoutubePlayerModule } from 'nativescript-youtubeplayer/angular';

@NgModule({
    imports: [
    YoutubePlayerModule
    ],
    declarations: [
        AppComponent
    ],
    bootstrap: [AppComponent]
})
<YoutubePlayer id="player" apiKey="AIzaSyCDH3BGQZT2ebUfSE8D3I8NLqaCPu4FRh0" src="{{src}}" height="250" width="100%" backgroundColor="gray"></YoutubePlayer>

Vue

Register the plugin in app.js (or depending on your app's setup: app.ts, or main.js, etc):

import Vue from 'nativescript-vue'
Vue.registerElement('YoutubePlayer', () => require('nativescript-youtubeplayer').YoutubePlayer)
<template>
  <Page class="page">
    <ActionBar class="action-bar">
      <Label class="action-bar-title" text="Home"></Label>
    </ActionBar>

    <StackLayout>
      <YoutubePlayer src="wH_0_pijbZY" apiKey="your-api-key"/>
    </StackLayout>
  </Page>
</template>

Api

Method Default Type Description
play() void Starts video playback of the currently cued / loaded video.
stop() void Stops and cancels loading of the current video.
destroy() void Destroy the video player and free resources.
pause() void Pauses the currently playing video.
isPlaying() false boolean Returns is current video is playing.
toggleFullscreen() void Toggle fullscreen mode.

Properties

Property Default Type Required Description
src null string
Set the videoId to play e.g (Z0LWuKQcrUA) => https://www.youtube.com/watch?v=Z0LWuKQcrUA
options null Object
Player options available IOS only
isFullScreen false boolean
Returns if player is currently in fullscreen mode.

Example Image

IOS Android
IOS Android

TODO

  • IOS
  • toggleFullscreen IOS

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.