JSPM

react-native-simple-progress

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q12419F
  • License ISC

Simple & Easy to use progressbar for React Native

Package Exports

  • react-native-simple-progress

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-simple-progress) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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

Prop Description Default
progress Progress of whatever the indicator is indicating. A number between 0 and 100. 0
height Hight of Progressbar. 24
progressColor Fill color of the indicator. #3B7FD2
borderWidth Width of outer border, set to 0 to remove. 1
borderColor Color of outer border. #CCC
borderRadius Radius of outer border. 25

enter image description here