An open API service indexing awesome lists of open source software.

https://github.com/binbytes/react-native-simple-progress

simple, easy and fully customize to use progressbar for React Native
https://github.com/binbytes/react-native-simple-progress

progress-bar react-native

Last synced: about 1 year ago
JSON representation

simple, easy and fully customize to use progressbar for React Native

Awesome Lists containing this project

README

          

# react-native-simple-progress

Easy to use and full customized horizontal progressbar.

## Installation

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

## Usage

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

```

### 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`|

![Progress](https://github.com/binbytes/react-native-simple-progress/blob/master/screenshot/progress.gif)