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-form-progress

v1.0.24

Published

A react native component super useful in displaying progress when user is filling up forms like signup page, setting, information catering etc

Downloads

21

Readme

| | Status | | ------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Dependencies | Dependencies Peer dependencies | | Package | npm package version npm downloads Type definitions |

React Native Form progress

A react native component super useful in displaying progress when user is filling up forms like signup page, setting, information catering etc

Note

  • If you find this repo interesting do not forgot to give it a star.
  • If you have a feature request than open it on github and feature should be added within 2-7 days (author of the repo would keep you updated)
  • If you find a bug, open an issue on github and author would fix it less than 24 hours

Installing

npm i react-native-device-info
npm i react-native-form-progress

For IOS

cd ios
pod install

for people using RN <= 0.59, please read the installation instruction from react-native-device-info repo

Using

import ProgressBar from 'react-native-form-progress'

And then

	<ProgressBar
					currentProgress={7}
					totalNumberOfProgressBars={8}
					colorOfProgressBar="#2E7D32"
					 />

and just keep incrementing current progress

Working GIFS

With blink

ezgif com-video-to-gif

Props

| Prop | Type | Default | Required | description | | ------------------------- | -------- | ----------- | ------------ | ------------------------------------------------------------------------------------------------------------- | | hideProgressBar | Boolean | false | No | hides progress bar ( returns auxilary component) | | colorOfProgressBar | string | 'black' | No | What Color do you want your progress bar to have | | colorOfNonProgressBar | string | 'white' | No | the space progress bar is yet to take | | currentProgress | number | none | Yes | the current progress of your progress bar, increment this value on sucessful completion of event | | totalNumberOfProgressBars | number | none | Yes | Typical this determines how many boxes should progress bar have in all together | | heightOfProgressBar | number | 5 | No | what should be the height of your progress bar | | SafeAreaViewDeciderProps | object | See below | No | Takes SafeAreaViewDeciderProps Props as an object | | blink | boolean | true | No | Do you wan the progress bar to blink or not | | durationForTheBlink | false | 500 | No | how fast you want the blink to happen |

Props for Safe Area

Pass Safe Area props like this

	SafeAreaViewDeciderProps: {
		statusBarHiddenForNotch: false,
		statusBarHiddenForNonNotch: false,
	},

Default value for Safe Area are

statusBarHiddenForNotch: false,
statusBarHiddenForNonNotch: false,