Skip to content

Commit

Permalink
Merge pull request #47 from nithinpp69/develop
Browse files Browse the repository at this point in the history
docs: update readme to include the updated props name
  • Loading branch information
nithinpp69 authored Apr 1, 2022
2 parents fa7263b + 97b60e3 commit cb7b64f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### Build: 🏠 `3.0.1` - react-native-circular-progress-indicator

---
- Updated typos in the readme. Renamed props are now updated in the readme as well.

### Build: 🏠 `3.0.0` - react-native-circular-progress-indicator

---
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import CircularProgress from 'react-native-circular-progress-indicator';
value={60}
radius={120}
duration={2000}
textColor={'#ecf0f1'}
progressValueColor={'#ecf0f1'}
maxValue={200}
title={'KM/H'}
titleColor={'white'}
Expand All @@ -67,7 +67,7 @@ import CircularProgress from 'react-native-circular-progress-indicator';
<CircularProgress
value={60}
activeStrokeWidth={12}
textColor={'#ecf0f1'}
progressValueColor={'#ecf0f1'}
/>
```
Expand All @@ -91,7 +91,7 @@ import CircularProgress from 'react-native-circular-progress-indicator';
value={85}
inActiveStrokeColor={'#2ecc71'}
inActiveStrokeOpacity={0.2}
textColor={'#fff'}
progressValueColor={'#fff'}
valueSuffix={'%'}
/>
Expand All @@ -109,7 +109,7 @@ import CircularProgress from 'react-native-circular-progress-indicator';
value={90}
inActiveStrokeColor={'#2ecc71'}
inActiveStrokeOpacity={0.2}
textColor={'#fff'}
progressValueColor={'#fff'}
valueSuffix={'%'}
onAnimationComplete={() => { alert('callback') }}
/>
Expand All @@ -127,7 +127,7 @@ import CircularProgress from 'react-native-circular-progress-indicator';
<CircularProgress
value={60}
radius={120}
textColor={'#ecf0f1'}
progressValueColor={'#ecf0f1'}
activeStrokeColor={'#f39c12'}
inActiveStrokeColor={'#9b59b6'}
inActiveStrokeOpacity={0.5}
Expand All @@ -138,7 +138,7 @@ import CircularProgress from 'react-native-circular-progress-indicator';
<CircularProgress
value={60}
radius={120}
textColor={'#ecf0f1'}
progressValueColor={'#ecf0f1'}
activeStrokeColor={'#f39c12'}
inActiveStrokeColor={'#9b59b6'}
inActiveStrokeOpacity={0.5}
Expand All @@ -152,7 +152,7 @@ import CircularProgress from 'react-native-circular-progress-indicator';
inActiveStrokeOpacity={0.5}
activeStrokeWidth={20}
inActiveStrokeWidth={20}
textStyle={{ fontWeight: '100', color: 'yellow' }}
progressValueStyle={{ fontWeight: '100', color: 'yellow' }}
/>
```
Expand All @@ -171,7 +171,7 @@ import CircularProgress from 'react-native-circular-progress-indicator';
radius={120}
maxValue={10}
initialValue={10}
textColor={'#fff'}
progressValueColor={'#fff'}
activeStrokeWidth={15}
inActiveStrokeWidth={15}
duration={10000}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-circular-progress-indicator",
"version": "3.0.0",
"version": "3.0.1",
"description": "React Native customizable circular progress indicator",
"main": "index",
"scripts": {
Expand Down

0 comments on commit cb7b64f

Please sign in to comment.