Description:
A simple React Native to animate digits in your app.
How to use it:
1. Install and import the component.
# NPM $ npm i react-native-animated-digits
import { AnimatedDigits } from 'react-native-animated-digits';2. Add the AnimatedDigits component to your app and specify the numeric value as follows:
const [usd, setUsd] = useState('0');
return (
<View style={styles.container}>
<AnimatedDigits value={usd} />
// ...
</View>
);