react-native-boring-text
v0.0.1
Published
This module enables you to create text components in React Native which don't incur the render cost of <Text/> (which registers touch handlers).
Downloads
5
Readme
react-native-boring-text
Getting started
Mostly automatic installation
npm install react-native-boring-text --save
(cd ios && pod install)Usage
import BoringText from "react-native-boring-text";
render() {
return (
<BoringText
text={'Hello world'}
/>
);
}