npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-videoplayerlist

v1.0.0

Published

Custom Video Player List Component to scroll throough videos vertically or horizontally with mute and pause functionality.

Downloads

4

Readme

Custom VideoPlayerComponent:

This is a Custom Video Player List Component which helps us play a list of videos and scroll through them in either a vertical or horizontal list. This component starts playing the video when we the data is loaded and pauses the current Video when we scroll down to the next video. If we scroll back up the video will fom where it was paused when we started scrolling. This also has a mute functionality built into it, wherein we can mute or unmute videos while scrolling through them.

It takes the following props:

  1. data => Here we can send the array of objects which can contain the following keys: a. media_url : contains the video link to be played b. thumbnail_image_url : contains thumbnail which shows up when video takes time to buffer c. created_by.name : shows the name of whoever create the video, this comes up as header in the video d. description: desciption of the video which comes up as a footer of the video e. likes and total_claps: shows likes and total claps count information and comes as a part of the footer in the video
  2. textColor => This prop is used to change the color of the header and footer text displayed on the Video Component.By default it is kept as white.
  3. cardGradient => There is Gradient card used to enhance the readability of the text on the Video and it has a Gradient. We can change the gradient by passing a object to this prop, which can have gradient start and end value like so. Eg: cardGradient = { start: 'rgba(0,0,0,0.1)', end: 'rgba(0,0,0,0.6)', } // This is the default value for this props.We can customise the start and end gradient colors accordingly.
  4. vertical => This prop can be used to change the direction in which we scroll the VideoPlayer List.We can scroll it vertically or horizontally. We can pass true for vertical scroll and false for horizontal scroll.

Installation => Run npm i react-native-videoplayerlist, then go to ios folder and do pod install.

Usage =>

import VideoPlayerList from 'react-native-videoplayerlist'

<VideoPlayerList data={data} vertical={false} textColor={'green'} cardGradient={{ start: 'rgba(0,0,0,0.1)', end: 'rgba(0,0,0,1)', }} />