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 🙏

© 2026 – Pkg Stats / Ryan Hefner

indatastar-styled-progress-bars

v0.2.0

Published

A choice of different progression bars to use

Readme

indatastar-styled-progress-bars

A React Native library providing beautiful animated progress bars, including:

  • 🌓 SemiCircularProgressBar – animated semicircle progress
  • 🌊 WaveProgressBar – horizontal animated wave progress
  • 🔵 CircularProgressBar – animated circular progress

Built with React Native, React Native SVG, and Animated API.

✨ Features

  • 🎨 Gradient Support – Easily apply smooth gradients to your progress bars.
  • Animated Progress – Smooth, performant animations using React Native’s Animated API.
  • 📐 Customizable Sizes – Adjust width, height, radius, stroke width, and wave height.
  • 🎯 Flexible Progress Range – Set your own maximum (end) value.
  • 💻 TypeScript Ready – Fully typed props with IntelliSense support.
  • 🔄 Auto & Manual Updates – Works with dynamic or controlled state updates.
  • Expo & React Native Compatible – Works in Expo and bare React Native projects.
  • 🌈 Multiple Styles – Wave, semicircular, and circular progress indicators.

Installation

# Using npm
npm install indatastar-styled-progress-bars react-native-svg

# Using yarn
yarn add indatastar-styled-progress-bars react-native-svg

🚀 Usage

CircularProgressBar

import { CircularProgressBar } from 'indatastar-styled-progress-bars';

<CircularProgressBar
  progress={75}
  end={100}
  radius={60}
  strokeWidth={10}
  colors={['#8e2de2', '#4a00e0']}
  duration={600}
/>

📋 Props

| Prop | Type | Default | Description | |-------------|----------|--------------------------|---------------------------| | progress | number | 0 | Current progress value | | end | number | 50 | Maximum progress value | | radius | number | 50 | Radius of semicircle | | strokeWidth | number | 10 | Stroke width | | colors | string[] | ['#4c669f', '#3b5998'] | Gradient colors | | duration | number | 500 | Animation duration (ms) |

🌊 WaveProgressBar

import React, { useState, useEffect } from 'react';
import { SafeAreaView, StyleSheet } from 'react-native';
import { WaveProgressBar } from 'indatastar-styled-progress-bars';

export default function WaveProgressDemo() {
  const [progress, setProgress] = useState(0);

  useEffect(() => {
    const interval = setInterval(() => {
      setProgress((prev) => (prev >= 100 ? 0 : prev + 10));
    }, 500);
    return () => clearInterval(interval);
  }, []);

  return (
    <SafeAreaView style={styles.container}>
      <WaveProgressBar
        progress={progress}
        width={250}
        height={40}
        end={50}
        waveHeight={10}
        colors={['#ff6a00', '#ee0979']}
        duration={500}
        borderRadius={20}
        showLabel={false}
        backgroundColor="transparent"
      />
    </SafeAreaView>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    padding: 20,
  },
});

📋 Props

| Prop | Type | Default | Description | |-----------------|-----------|----------------------------|---------------------------------------| | progress | number | 0 | Current progress value | | end | number | 50 | Maximum progress value | | width | number | 300 | Width of the progress bar | | height | number | 50 | Height of the progress bar | | waveHeight | number | 10 | Height of the wave | | colors | string[] | ['#4c669f', '#3b5998'] | Gradient colors | | duration | number | 1000 | Animation duration in milliseconds | | backgroundColor | string | #e0e0e0 | Background color of the container | | borderRadius | number | 10 | Border radius of the container | | showLabel | boolean | true | Whether to show percentage label |

🌓SemiCircularProgressBar

import React, { useState, useEffect } from 'react';
import { SafeAreaView, StyleSheet } from 'react-native';
import { SemiCircularProgressBar } from 'indatastar-styled-progress-bars';

export default function SemiCircularProgressDemo() {
  const [progress, setProgress] = useState(0);

  useEffect(() => {
    const interval = setInterval(() => {
      setProgress((prev) => (prev >= 100 ? 0 : prev + 10));
    }, 500);
    return () => clearInterval(interval);
  }, []);

  return (
    <SafeAreaView style={styles.container}>
      <SemiCircularProgressBar
        progress={progress}
        radius={80}
        end={50}
        strokeWidth={12}
        colors={['#00c6ff', '#0072ff']}
        duration={500}
      />
    </SafeAreaView>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    padding: 20,
  },
});

📋 Props

| Prop | Type | Default | Description | |------------|-----------|---------------------|------------------------------| | progress | number | 0 | Current progress value | | end | number | 50 | Maximum progress value | | radius | number | 50 | Radius of semicircle | | strokeWidth | number | 10 | Width of the stroke | | colors | string[] | ['#4c669f', '#3b5998'] | Gradient colors | | duration | number | 500 | Animation duration in milliseconds |

📄 License

MIT