UNPKG

react-native-animateable-text

Version:

A fork of React Native's `<Text/> component that supports Reanimated Shared Values as text!

6 lines (5 loc) 285 B
import Animated from 'react-native-reanimated'; import { AnimateableText as RawAnimateableText } from './AnimateableText'; Animated.addWhitelistedNativeProps({ text: true }); const AnimateableText = Animated.createAnimatedComponent(RawAnimateableText); export default AnimateableText;