progress-bar-animated
v1.0.2
Published
Progressbar with animation for react native
Downloads
1
Readme
#progress-bar-animated
A cross platform progressbar library using react native which is completely customizable
#Installation
npm install progress-bar-animated --save
#Example usage
import ProgressBarAnimated from 'progress-bar-animated';
<ProgressBarAnimated
progress={50}
style={{marginLeft: 16, marginRight: 16}}
filledColor='red'
unfilledColor='white'
/>
#Available props
progress: Filled level of progress bar(required)
style: Styling for the progress bar(including borderWidth, borderColor, borderRadius....)
fillColor: Color of filled portion in progress bar
unfilledColor: Color of unfilled portion in progress bar
startDelay: Specify the time after which the fill animation should start in ms(default is 300)