0.1.0 • Published 7 years ago

react-native-simple-progress v0.1.0

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

react-native-simple-progress

Easy to use and full customized horizontal progressbar.

Installation

$ npm install react-native-simple-progress --save

Usage

import Progress from 'react-native-simple-progress';

<Progress 
	progress={10} 
	height={24} 
	progressColor={'#3B7FD2'}
	borderColor={'#CCC'}
	borderRadius={25} />

Properties

PropDescriptionDefault
progressProgress of whatever the indicator is indicating. A number between 0 and 100.0
heightHight of Progressbar.24
progressColorFill color of the indicator.#3B7FD2
borderWidthWidth of outer border, set to 0 to remove.1
borderColorColor of outer border.#CCC
borderRadiusRadius of outer border.25

enter image description here