
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
nativescript-youtubeplayer-inline
Advanced tools
YoutubePlayer for Nativescript with inline playing support
tns plugin add nativescript-youtubeplayertns plugin add nativescript-youtubeplayer@2.2.6Api key follow ➡ link to get your api key
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" />
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>
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>
| 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. |
| 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. |
| IOS | Android |
|---|---|
![]() | ![]() |
FAQs
YoutubePlayer for Nativescript with inline playing support
We found that nativescript-youtubeplayer-inline demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.