react-native-animateable-text
Version:
A fork of React Native's `<Text/> component that supports Reanimated Shared Values as text!
8 lines • 320 B
JavaScript
import Animated from 'react-native-reanimated';
import { AnimateableText as RawAnimateableText } from './AnimateableText';
Animated.addWhitelistedNativeProps({
text: true
});
const AnimateableText = Animated.createAnimatedComponent(RawAnimateableText);
export default AnimateableText;
//# sourceMappingURL=index.js.map