diff --git a/releases/next/docs/text.html b/releases/next/docs/text.html index a28b9a56a3f..836d3f6fdf3 100644 --- a/releases/next/docs/text.html +++ b/releases/next/docs/text.html @@ -56,7 +56,7 @@ most fonts. Not all fonts have a variant for each of the numeric values, in that case the closest one is chosen.
Specifies text alignment. The value 'justify' is only supported on iOS and
fallbacks to left on Android.
Set to false to remove extra font padding intended to make space for certain ascenders / descenders.
With some fonts, this padding can make text look slightly misaligned when centered vertically.
-For best results also set textAlignVertical to center. Default is true.
Used to locate this view in end-to-end tests.
Set text break strategy on Android API Level 23+, possible values are simple, highQuality, balanced
+For best results also set textAlignVertical to center. Default is true.
Used to locate this view in end-to-end tests.
Specifies the disabled state of the text view for testing purposes
Set text break strategy on Android API Level 23+, possible values are simple, highQuality, balanced
The default value is highQuality.
Specifies whether font should be scaled down automatically to fit given style constraints.
Specifies smallest possible scale a font can reach when adjustsFontSizeToFit is enabled. (values 0.01-1.0).
When true, no visual change is made when text is pressed down. By
default, a gray oval highlights the text on press down.
You can edit the content above on GitHub and send us a pull request!
Both iOS and Android allow you to display formatted text by annotating ranges of a string with specific formatting like bold or colored text (NSAttributedString on iOS, SpannableString on Android). In practice, this is very tedious. For React Native, we decided to use web paradigm for this where you can nest text to achieve the same effect.