Reputation: 1444
My requirement is to have a progress circle with countdown timer inside the circle. The timer keeps ticking down, meanwhile the circle keeps filling up. Once the timer gets to 0, the circle is full.
I am not able to find any plugin that suits my needs. Please help!
Upvotes: 1
Views: 628
Reputation: 2771
okay so you can use
npm install react-circular-progressbar
install this package and use it as
import {CircularProgressbar} from 'react-circular-progressbar';
<CircularProgressbar percentage={60} />
you can maintain the progress in state or whatever way you like and in percentage you can set that state.
Upvotes: 1