@ecancan/react-native-progress-circle
TypeScript icon, indicating that this package has built-in type declarations

2.2.1 • Public • Published

!!! Fixed deprecated-react-native-prop-types issue

license Version npm Twitter Follow

React Native Progress Circle

React Native Progress Circles

Features

  • Custom colors
  • Custom size and border radius
  • Light-weight: No other dependencies besides react-native

Installation

yarn add @ecancan/react-native-progress-circle

or

npm install --save @ecancan/react-native-progress-circle

Usage

import ProgressCircle from '@ecancan/react-native-progress-circle'

const MyApp = () => {
  return (
    <ProgressCircle
      percent={30}
      radius={50}
      borderWidth={8}
      color="#3399FF"
      shadowColor="#999"
      bgColor="#fff"
    >
      <Text style={{ fontSize: 18 }}>{'30%'}</Text>
    </ProgressCircle>
  );
}

Props

Name Description Type Required Default Value
percent The percentage used for displaying the progress Number
radius The radius in px of the component (including border) Number
borderWidth The border width in px Number
color The border color String #f00 '#f00'
shadowColor The background color of the border String #999 '#999'
bgColor The inner background color of the component String #e9e9ef '#e9e9ef'
children The children to render inside this component Node null
containerStyle The custom styling which will be applied to the container of the children Style null
outerCircleStyle The custom styling which will be applied to the outer circle Style null

Author

Christoph Michel Ahmet CAN

Implementation Details

React Native Progress Circle

License

MIT

Package Sidebar

Install

npm i @ecancan/react-native-progress-circle

Weekly Downloads

2

Version

2.2.1

License

MIT

Unpacked Size

16 kB

Total Files

7

Last publish

Collaborators

  • ecancan