progress-bar-animated

Progressbar with animation for react native


Keywords
progressbar
License
ISC
Install
npm install progress-bar-animated@1.0.1

Documentation

progress-bar-animated

A cross platform progressbar library using react native which is completely customizable

Installation

npm install progress-bar-animated --save

progressios

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)