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 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-native-video-player-custom-ui

v1.1.0

Published

React native video player controls

Readme

react-native-video-player-custom-ui

A react native component that lets you create custom ui for video player.

Installation

Run npm install react-native-video-player-custom-ui in your project directory.

Note: This package needs peer dependency of react-native-video please install and configure before you proceed.

Usage

This snippet would produce the output shown in the above gif

import React, { Component } from 'react';
import CustomVideoPlayer from 'react-native-video-player-custom-ui';

const Test = (props: any) => {
  return (
      <CustomVideoPlayer uri={"YOUR_VIDEO_URL"}/>
  )
}

Props

Prop | Type | Optional | Default | Description --------------------- | ------------- | -------- | ------------------------- | ----------- uri | string | No | null | supports video url and storage url play | boolean | yes | false | handles playback width | number|string | Yes | 100% | width of the player height | number|string | Yes | 30% | height of the player autoplay | boolean | yes | false | handles autoplay loop | boolean | yes | false | video will play continously playIcon | number | yes | image | custom icon for play pauseIcon | number | yes | image | custom icon for pause replayIcon | number | yes | image | custom icon for replay theme | string | yes | white | player color theme radius | number | yes | 10 | border radius for player controls | boolean | yes | true | show/hide controls seekBarWidth | number|string | Yes | 80% | width of the seekbar seekBarFilledColor | string | yes | white | seek bar finished color seekBarUnfilledColor | string | yes | white | seek bar unfinished color thumbStyle | object | yes | | seekbar thumb style resizeMode | string | yes | contain | player resize mode onComplete | function | yes | | triggers on video completion onReplay | function | yes | | triggers on replay

Contributing

If you find a bug just open a PR or an issue and ping me!