A light-weight progress circle indicator for React Native.
npm install progress-circle-react-native![license]()



!Progress Circles React Native
This package was created to fix the dependency issues on the original package here
- Custom colors
- Custom size and border radius
- Light-weight: No other dependencies besides react-native
yarn add progress-circle-react-native
or
npm install --save progress-circle-react-native
``javascript
import ProgressCircle from 'progress-circle-react-native'
render() {
return (
radius={50}
borderWidth={8}
color="#3399FF"
shadowColor="#999"
bgColor="#fff"
>
)
}
`
| 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 | ✓ | |px
| borderWidth | The border width in | Number | ✓ | |'#f00'
| color | The border color | String | | !#f00 |'#999'
| shadowColor | The background color of the border | String | | !#999 |'#e9e9ef'
| bgColor | The inner background color of the component | String | | !#e9e9ef |null
| children | The children to render inside this component | Node | | |children
| containerStyle | The custom styling which will be applied to the container of the | Style | | null |null` |
| outerCircleStyle | The custom styling which will be applied to the outer circle | Style | |
Boma Amakiri
MIT