1.1.2 • Published 4 years ago

rn-multi-progress-bar v1.1.2

Weekly downloads
12
License
MIT
Repository
github
Last release
4 years ago

Multi-Progress Bar

Multi-Progress Bar is a React-Native component. Which can be used to show several progress.

Demo

alt text

Installation

npm

npm i rn-multi-progress-bar

yarn

yarn add rn-multi-progress-bar

Usage

import * as React from "react";
import { ProgressBar } from "rn-multi-progress-bar";

const MyComponent = () => {
  return (
    <ProgressBar
      shouldAnimate={true} // to enable animation, default false
      animateDuration={1000} // if animation enabled
      data={[
        { progress: 7, color: "rgb(255, 193, 2)" },
        { progress: 13, color: "rgb(55, 106, 255)" },
        { progress: 5, color: "rgb(229, 232, 249)" }
      ]}
    />
  );
};

export default MyComponent;
1.1.2

4 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago