react-native-animation-ring
npm install react-native-animation-ringjavascript
import React from 'react';
import {RingAnimation} from 'react-native-animation-ring';
const RingAnimation = ()=>{
return (
height='20'
width='20'
/>
);
};
export default RingAnimation;
`
Other
Under The give to Ring Animation Code in Ring Delay and Duration Animation Time to change in execution Time.
`javascript
import React from 'react';
import {RingAnimation} from 'react-native-animation-ring';
const RingAnimation = ()=>{
useEffect(() => {
ring.value= withDelay(
delay,
withRepeat(
withTiming(1,{
duration:4000, // 'change this Animation Duration Time as per Requirement'.
}),
-1
)
);
},[]);
return (
// change this
// Delay method in
// Time change to
// more or less yours choice
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
});
export default RingAnimation;
``