react-native-fast-text
TypeScript icon, indicating that this package has built-in type declarations

0.1.1 • Public • Published

react-native-fast-text

A faster version of the React Native Text component that removes (for the most part) unnecessary overhead.

Why?

The native Text implementation includes additional *onPress props:

  • onLongPress
  • onPress
  • onPressIn
  • onPressOut
  • disabled
  • pressReactOffset

It also includes a state variable called isHighlighted, which causes unnecessary renders. Additionally, it wraps the Text with the <TextAncestor.Provider /> context provider, thereby polluting the React tree.

By removing this extra logic and going straight down into RCTText we have a much faster text component.

Notice

It's worth noting that removing the context provider has one downside: while nesting Text inside Text still works, each individual Text node must be styled independently since style inheritance is lost. The advantages outweigh the disadvantages though.

Installation

Install the module. Use it however you'd like.

There's a codmod in here that will convert all of your import { Text } from 'react-native to use import { Text } from 'react-native-fast-text.

npx jscodeshift -t node_modules/react-native-fast-text/codemods/transform-to-fast-text.js

Then when the time comes, you can also run a codemod to remove react-native-fast-text

npx jscodeshift -t node_modules/react-native-fast-text/codemods/transform-from-fast-text.js

Read this Twitter thread by Nate

Here's the Text implementation from React Native

Thanks

All I did was create the package. The brains behind this is Nate from Tamagui (@natebirdman). Tamagui is an incredible cross platform library.

@FernandoTheRojo also had an awesome thread breaking down why this is happening.

Package Sidebar

Install

npm i react-native-fast-text

Weekly Downloads

179

Version

0.1.1

License

MIT

Unpacked Size

10.1 kB

Total Files

15

Last publish

Collaborators

  • peterpme