73.0.1 • Published 3 years ago

nativescript-youtubeplayer-inline v73.0.1

Weekly downloads
67
License
Apache-2.0
Repository
-
Last release
3 years ago

NativeScript YoutubePlayer

npm npm Build Status

Installation

NativeScript 4x

  • tns plugin add nativescript-youtubeplayer

NativeScript 3x

  • tns plugin add nativescript-youtubeplayer@2.2.6

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

MethodDefaultTypeDescription
play()voidStarts video playback of the currently cued / loaded video.
stop()voidStops and cancels loading of the current video.
destroy()voidDestroy the video player and free resources.
pause()voidPauses the currently playing video.
isPlaying()falsebooleanReturns is current video is playing.
toggleFullscreen()voidToggle fullscreen mode.

Properties

PropertyDefaultTypeRequiredDescription
srcnullstring- x Set the videoId to play e.g (Z0LWuKQcrUA) => https://www.youtube.com/watch?v=Z0LWuKQcrUA
optionsnullObject- Player options available IOS only
isFullScreenfalseboolean- Returns if player is currently in fullscreen mode.

Example Image

IOSAndroid
IOSAndroid

TODO

  • IOS
  • toggleFullscreen IOS
73.0.1

3 years ago

63.0.1

3 years ago

53.0.1

4 years ago

43.0.1

4 years ago

33.0.1

4 years ago

23.0.1

4 years ago

4.0.2

5 years ago

4.0.1

5 years ago