Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/axelra-ag/react-native-animateable-text

🆎 A fork of React Native's <Text/> component that supports Animated Values!
https://github.com/axelra-ag/react-native-animateable-text

react-native reanimated reanimated2 text

Last synced: about 2 months ago
JSON representation

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

Awesome Lists containing this project

README

        

# react-native-animateable-text

A fork of React Native's `` component that supports Animated Values as text!

## Compatibility


Animateable Text Version
RN Version


^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

```sh
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 `` component, except instead of passing the text as a child node, pass it using the `text` props.

```tsx
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 (
;
};
```

## Usage (Reanimated 1)

```tsx
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 (
;
};
```

## [OMG, why would you build this?](https://www.npmjs.com/package/react-native-reanimated/v/1.4.0#omg-why-would-you-build-this-motivation)

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 `` component from [react-native-redash](https://wcandillon.github.io/react-native-redash-v1-docs/strings#retext), which allows you to render a string from a Reanimated Text node. However, under the hood, it uses a `` 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 to make it align with the rest of your text. (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, dataDetectorType or onTextLayout.



## Contributing

See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.

## Credits

Written by [Jonny Burger](https://jonny.io) for our needs at [Axelra](https://axelra.com).

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