All Projects → hinodi → react-native-animated-circular-progress

hinodi / react-native-animated-circular-progress

Licence: other
No description or website provided.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to react-native-animated-circular-progress

React-Native-Interactive-Card
Interactive Card Component for React Native
Stars: ✭ 29 (+81.25%)
Mutual labels:  animated
maslo-persona
Meet Maslo... an expressive empathetic avatar to add a personified computing layer to a project!
Stars: ✭ 20 (+25%)
Mutual labels:  animated
react-native-animated-menu
Top-down animated menu transition concept
Stars: ✭ 56 (+250%)
Mutual labels:  animated
arc-progress
🐳 Arc circular animation progress bar drawn by canvas, you can used in the react component, or no dependence.
Stars: ✭ 42 (+162.5%)
Mutual labels:  circular-progress
circular progress
Different types of Circular progressbar in flutter
Stars: ✭ 55 (+243.75%)
Mutual labels:  circular-progress-bar
vue-typical
🐡 Vue Animated typing in ~400 bytes of JavaScript
Stars: ✭ 121 (+656.25%)
Mutual labels:  animated
animation-wrapper-view
Declarative animations with imperative controls for RN/RNW.
Stars: ✭ 53 (+231.25%)
Mutual labels:  animated
gifterm
View animated .GIF files in a text console. Linux/Mac/Windows
Stars: ✭ 14 (-12.5%)
Mutual labels:  animated
react-native-multiple-select
Customizable & Animated, Easy to Use Multiple Select Library for React Native
Stars: ✭ 31 (+93.75%)
Mutual labels:  animated
smoothr
A custom React router that leverages the Web Animations API and CSS animations.
Stars: ✭ 28 (+75%)
Mutual labels:  animated
Bibata Cursor Rainbow
'Semi-Animated' Bibata cursors with rainbow colors
Stars: ✭ 18 (+12.5%)
Mutual labels:  animated
react-spring-pop
Animate React elements when they enter the viewport with physics based animations
Stars: ✭ 17 (+6.25%)
Mutual labels:  animated
haraka
Stateful animations in React Native.
Stars: ✭ 71 (+343.75%)
Mutual labels:  animated
YBPulseButton
A Custom button that pulses.
Stars: ✭ 31 (+93.75%)
Mutual labels:  animated
BASH-Model
We developed a method animating a statistical 3D human model for biomechanical analysis to increase accessibility for non-experts, like patients, athletes, or designers.
Stars: ✭ 51 (+218.75%)
Mutual labels:  animated
LuminousNewTab
Luminous New Tab is a beautiful 'new tab' browser extension that has an animated gradient background! New tabs will show your bookmarks, the time, weather and let you do searches too!
Stars: ✭ 18 (+12.5%)
Mutual labels:  animated
animwall
Animated wallpapers for Linux
Stars: ✭ 28 (+75%)
Mutual labels:  animated
animated interpolation
A flutter interpolation plugin inspired by the React Native interpolation animation
Stars: ✭ 20 (+25%)
Mutual labels:  animated
fl animated linechart
Animated line chart for flutter
Stars: ✭ 48 (+200%)
Mutual labels:  animated
react-native-animated-carousel
🦄 A wonderful animated carsouel hooks component for React-Native
Stars: ✭ 16 (+0%)
Mutual labels:  animated

license Version npm

react-native-animated-circular-progress

Animated circular progress components for React Native project, with all pure React Native API

Component API

[AnimatedCircularProgress]

AnimatedCircularProgress

import AnimatedCircularProgress from 'react-native-animated-circular-progress';

<AnimatedCircularProgress
    backgroundColor='red'
    color='green'
    startDeg={45}
    endDeg={120}
    radius={60}
    innerRadius={40}
    duration={1000}
/>;

You also use CircularProgress without inner Circle

<AnimatedCircularProgress
    startDeg={45}
    endDeg={120}
    innerRadius={0}
    duration={300}
    style={{ marginTop: 10 }}
/>

Props

Name Description Type Required Default Value
backgroundColor The background color of CircularProgress String '#eeeeee'
color The color of CircularProgress String '#1e88e5'
startDeg Start degree of CircularProgress, where animation start (0-360) Number 0
endDeg End degree of CircularProgress, where animation end (0-360), greater than startDeg Number 360
radius Radius of outer CircularProgress Number 100
innerRadius Radius of inner CircularProgress Number 80
innerBackgroundColor Background color of inner CircularProgress String transparent
duration Time in ms, animation processing during this time. Actually animation time is duration / (endDeg - startDeg) smaller than radius Number 1000
children The children to render inside this component Node null
style The custom styling which will be applied to the container of the children Style null

Installation

yarn add react-native-animated-circular-progress

or

npm install react-native-animated-circular-progress

Author

Dinh Huynh

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].