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

metpro-react-native-progress

v2.2.2

Published

Progress indicators and spinners for React Native using ReactART. This is a fork of the original react-native-progress to support react-native 0.12.0

Downloads

23

Readme

react-native-progress

Progress indicators and spinners for React Native using ReactART.

progress-demo

Note: Full android support will come when ReactART is ported to android.

Installation

$ npm install react-native-progress --save

ReactART based components

To use the Pie or Circle components, you need to include the ART library in your project. To do this, simply add the ART.xcodeproj (found in node_modules/react-native/Libraries/ART) to the Libraries group and add libART.a to Link Binary With Libraries under Build Phases. More info and screenshots about how to do this is available in the React Native documentation.

Usage

Note: If you don't want the ReactART based components and it's dependencies, do a deep require instead: var ProgressBar = require('react-native-progress/Bar');.

var Progress = require('react-native-progress');

<Progress.Bar progress={0.3} width={200} />
<Progress.Pie progress={0.4} size={50} />
<Progress.Circle size={30} indeterminate={true} />
<Progress.CircleSnail colors={['red', 'green', 'blue']} />

Properties for all progress components

| Prop | Description | Default | |---|---|---| |animated|Wether or not to animate changes to progress. |true| |indeterminate|If set to true, the indicator will spin and progress prop will be ignored. |false| |progress|Progress of whatever the indicator is indicating. A number between 0 and 1. |0| |color|Fill color of the indicator. |rgba(0, 122, 255, 1)| |unfilledColor|Color of the remaining progress. |None| |borderWidth|Width of outer border, set to 0 to remove. |1| |borderColor|Color of outer border. |color|

Progress.Bar

All of the props under Properties in addition to the following:

| Prop | Description | Default | |---|---|---| |width|Full width of the progress bar. |150| |height|Height of the progress bar. |6| |borderRadius|Rounding of corners, set to 0 to disable. |4|

Progress.Circle

All of the props under Properties in addition to the following:

| Prop | Description | Default | |---|---|---| |size|Diameter of the circle. |40| |thickness|Thickness of the inner circle. |3| |showsText|Wether or not to show a text representation of current progress. |false| |formatText(progress)|A function returning a string to be displayed for the textual representation. |See source| |textStyle|Styles for progress text, defaults to a same color as circle and fontSize proportional to size prop. |None| |direction|Direction of the circle clockwise or counter-clockwise |clockwise|

Progress.Pie

All of the props under Properties in addition to the following:

| Prop | Description | Default | |---|---|---| |size|Diameter of the pie. |40|

Progress.CircleSnail

| Prop | Description | Default | |---|---|---| |animating|If the circle should animate. |true| |hidesWhenStopped|If the circle should be removed when not animating. |true| |size|Diameter of the circle. |40| |color|Color of the circle, use an array of colors for rainbow effect. |rgba(0, 122, 255, 1)| |thickness|Thickness of the circle. |3|

Examples

Changelog

Todo

  • [x] Progress bar
  • [x] Circular progress indicator
  • [x] Pie progress indicator
  • [x] Animation
  • [x] Indeterminate state
  • [x] Progress percentage text
  • [ ] Optional color change on success/failure
  • [x] Snail/rainbow style spinners
  • [ ] Safari style navigation progress bar

Thanks

To Mandarin Drummond for giving me the NPM name.

License

MIT License. © Joel Arvidsson 2015