From 443c7dbbf14d97d51ec3b037c5220769cb511ec3 Mon Sep 17 00:00:00 2001
From: Website Deployment Script
For details of how this works under the hood, see http://frescolib.org/docs/rounded-corners-and-circles.html
iOS-Specific style to "tint" an image. Changes the color of all the non-transparent pixels to the tintColor.
A unique identifier for this element to be used in UI Automation testing scripts.
The text that's read by the screen reader when the user interacts with -the image.
When true, indicates the image is an accessibility element.
When the image is resized, the corners of the size specified +the image.
When true, indicates the image is an accessibility element.
blurRadius: the blur radius of the blur filter added to the image
When the image is resized, the corners of the size specified by capInsets will stay a fixed size, but the center content and borders of the image will be stretched. This is useful for creating resizable rounded buttons, shadows, and other resizable assets. More info on diff --git a/releases/next/docs/text.html b/releases/next/docs/text.html index a24fd7382e5..c577b141158 100644 --- a/releases/next/docs/text.html +++ b/releases/next/docs/text.html @@ -27,7 +27,7 @@ each other on account of the literal newlines:
Invoked on mount and layout changes with
{nativeEvent: {layout: {x, y, width, height}}}
This function is called on press.
Specifies font weight. The values 'normal' and 'bold' are supported for 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.
Used to locate this view in end-to-end tests.
Specifies should fonts scale to respect Text Size accessibility setting on iOS.
When true, no visual change is made when text is pressed down. By +in that case the closest one is chosen.
Specifies text alignment. The value 'justify' is only supported on iOS.
Used to locate this view in end-to-end tests.
Specifies should fonts scale to respect Text Size accessibility setting on iOS.
When true, no visual change is made when text is pressed down. By default, a gray oval highlights the text on press down.
Description # | Edit on GitHub |
In iOS, the way to display formatted text is by using NSAttributedString: you give the text that you want to display and annotate ranges with some specific formatting. 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.