0.12.0 • Published 3 days ago

react-native-animateable-text v0.12.0

Weekly downloads
380
License
MIT
Repository
github
Last release
3 days ago

react-native-animateable-text

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

Compatibility

Installation

yarn add react-native-animateable-text
npx pod-install

Usage (Reanimated 2)

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 text = useSharedValue('World');

  const animatedText = useDerivedValue(() => `Hello ${text.value}`);
  const animatedProps = useAnimatedProps(() => {
    return {
      text: animatedText.value,
    };
  });

  return (
    <AnimateableText
      animatedProps={animatedProps}
      // same other props as Text component
    />;
};

Usage (Reanimated 1)

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

const Example: React.FC = () => {
  const text = useMemo(() => new Animated.Value('World'), []);

  const animatedText = useMemo(() => concat('Hello', text));

  return (
    <AnimateableText
      text={animatedText}
      // same other props as Text component
    />;
};

OMG, why would you build this?

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:

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!

License

MIT

0.12.0

3 days ago

0.11.1

2 months ago

0.11.0

11 months ago

0.10.2

1 year ago

0.10.1

2 years ago

0.10.0

2 years ago

0.9.0

2 years ago

0.9.1

2 years ago

0.8.1

3 years ago

0.8.2

3 years ago

0.8.0

3 years ago

0.7.0-alpha.0

3 years ago

0.7.0

3 years ago

0.6.2

3 years ago

0.6.1

3 years ago

0.6.0

3 years ago

0.5.9

3 years ago

0.5.7

3 years ago

0.5.6

3 years ago

0.5.4

3 years ago

0.5.5

3 years ago

0.5.0

3 years ago

0.3.0

3 years ago

0.4.0

3 years ago

0.2.1

4 years ago

0.2.0

4 years ago