0.1.2 • Published 7 months ago

parsed-text-rn v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

parsed-text-rn

React Native library to style texts based on parse patterns provided. We created this library based on react-native-parsed-text since it's owner doesn't seem to be updating it anymore. Feel free to improve the code sending pull requests or issues.

Installation

npm install parsed-text-rn

Usage

import { ParsedText, squareBracketsPattern } from 'parsed-text-rn';

// Feel free to use our own parse patterns, like the curlyBracketsPattern and squareBracketsPattern or create your own. Check the source code for those patterns and use regular expressions to achieve the desired result.

<ParsedText
  parse={[
    {
      ...squareBracketsPattern,
      style: {
        fontWeight: '700',
      },
    },
  ]}
>
  {boldText}
</ParsedText>;

Contributing

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

License

MIT


Made with create-react-native-library

0.1.2

7 months ago

0.1.0

9 months ago