Plain Text is a faster, lighter alternative to React Native's built-in <Text> component
that focuses on single-style text. This covers most real-world text: headers, labels, body copy.
It renders straight to the platform's native text
views: UILabel on iOS, TextView on Android, instead of using React Native's
text layout pipeline.
The tradeoff: one style, no nested <Text>.
See the list of supported props and styles.
For most apps, React Native's <Text> is a reasonable choice. Two reasons to pick
<PlainText> instead:
<Text>: such as fontVariationSettings and
verticalAlign / textAlignVertical on iOS. See
Improvements over RN Text.You can mix it with <Text> in the same screen and only use it where it earns
its place. A unified Text component uses
conditional rendering to pick between the two for you.
MIT