react-native-reanimated-progress-bar
Version:
React Native animated progress bar, using react-native-reanimated
22 lines (16 loc) • 471 B
Markdown

```javascript
yarn add react-native-reanimated
yarn add react-native-reanimated-progress-bar
```
```javascript
<AnimatedProgress
fill="light-blue" // fill of progress bar
current={2} // current position current/total
total={5} // total parts for iterations
style={{ height: 6 }} // container style
/>
```