Skip to content

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

License

Notifications You must be signed in to change notification settings

axelra-ag/react-native-animateable-text

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

react-native-animateable-text

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

Compatibility

(🚨 Make sure you use the correct version for your RN project)

Animateable Text Version RN Version Old Arch New Arch (Fabric)
^0.14.2 ^0.76.0 βœ… βœ…
^0.13.0 ^0.75.0 βœ… πŸ›‘
^0.12.0 ^0.74.0 βœ… πŸ›‘
^0.11.0 ^0.71.7 βœ… πŸ›‘
^0.10.0 ^0.68 βœ… πŸ›‘
^0.9.1 ^0.67 βœ… πŸ›‘
^0.8.0 ^0.66 βœ… πŸ›‘
^0.7.0 ^0.65 βœ… πŸ›‘
^0.6.0 ^0.64 βœ… πŸ›‘
^0.5.9 ^0.63 βœ… πŸ›‘

Installation

First make sure you have reanimated already installed and linked from here then run

yarn add react-native-animateable-text

then for Expo managed projects you need to prebuild your project, and for ReactNative bare projects you should run

npx pod-install

Usage (Reanimated 2/3)

Note about Reanimated 2: The library does not work with Alpha 9 until RC1. Make sure to update to RC2 or later!

Use it the same as a <Text/> component, except instead of passing the text as a child node, pass it using the text props.

import AnimateableText from 'react-native-animateable-text';

const Example: React.FC = () => {
  const reanimatedText = useSharedValue('World');

  const animatedProps = useAnimatedProps(() => {
    return {
      text: reanimatedText.value,
    };
  });

  return (
    <AnimateableText
      animatedProps={animatedProps}
      // all other <Text /> props are also available
    />;
};

We want to animate numbers based on gestures as fast as possible, for example for charts displaying financial data. Updating native state is too slow and not feasible for a smooth experience. Using createAnimatedComponent doesn't allow you to animate the text since the children of Text are separate nodes rather than just props.

The best way so far has been to use the <ReText> component from react-native-redash, which allows you to render a string from a Reanimated Text node. However, under the hood, it uses a <TextInput/> and animates it's value prop.

This naturally comes with a few edge cases, for example:

  • *Flicker*: When changing values too fast, the text can be cut off and show an ellipsis. The problem gets worse the slower the device and the more congested the render queue is. Watch this GIF at 0.2x speed carefully:
  • *Inconsistent styling*: When styling a TextInput, you need to add more styles and spacing to make it align with the default Text styles. (Behavior in screenshot happens only on Android)

  • *Lack of full capabilities*: Not all props are available. With Animateable Text, you can use props that you cannot use on a TextInput, such as selectable (Android), dataDetectorType or onTextLayout.

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

Credits

Written by Jonny Burger for our needs at Axelra.

Thanks to Axelra for sponsoring my time to turn this into an open source project!



We are a Swiss Agency specializing in React Native, caring even about the smallest of details.

License

MIT