From 4688af6033dc155a0426215ea5c4ef4599d40a23 Mon Sep 17 00:00:00 2001
From: Website Deployment Script
'stretch': Scale width and height independently, This may change the aspect ratio of the src.
uri is a string representing the resource identifier for the image, which
could be an http address, a local file path, or the name of a static image
-resource (which should be wrapped in the require('./path/to/image.png') function).
When the image has rounded corners, specifying an overlayColor will
+resource (which should be wrapped in the require('./path/to/image.png') function).
When the image has rounded corners, specifying an overlayColor will cause the remaining space in the corners to be filled with a solid color. This is useful in cases which are not supported by the Android implementation of rounded corners: diff --git a/docs/scrollview.html b/docs/scrollview.html index 09a8ceea85e..f7cd859168d 100644 --- a/docs/scrollview.html +++ b/docs/scrollview.html @@ -33,7 +33,7 @@ functionality for the ScrollView.
When false, the content does not scroll. -The default value is true.
When true, shows a horizontal scroll indicator.
When true, shows a vertical scroll indicator.
(Android-only) Sets the elevation of a view, using Android's underlying +The default value is true.
When true, shows a horizontal scroll indicator.
When true, shows a vertical scroll indicator.
(Android-only) Sets the elevation of a view, using Android's underlying elevation API. This adds a drop shadow to the item and affects z-order for overlapping views. Only supported on Android 5.0+, has no effect on earlier versions.
When true, momentum events will be sent from Android diff --git a/docs/text.html b/docs/text.html index ec71062f08a..a8f263a3270 100644 --- a/docs/text.html +++ b/docs/text.html @@ -25,7 +25,7 @@ each other on account of the literal newlines:
Used to truncate the text with an ellipsis after computing the text layout, including line wrapping, such that the total number of lines -does not exceed this number.
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 +does not exceed this number.
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 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.
(Android-only) Sets the elevation of a view, using Android's underlying +(or one of its superviews).
(Android-only) Sets the elevation of a view, using Android's underlying elevation API. This adds a drop shadow to the item and affects z-order for overlapping views. Only supported on Android 5.0+, has no effect on earlier versions.
Used to locate this view in end-to-end tests. NB: disables the 'layout-only diff --git a/releases/0.20/docs/image.html b/releases/0.20/docs/image.html index a9f37a01fe5..757b9f35a36 100644 --- a/releases/0.20/docs/image.html +++ b/releases/0.20/docs/image.html @@ -22,7 +22,7 @@ so that both dimensions (width and height) of the image will be equal to or less than the corresponding dimension of the view (minus padding).
'stretch': Scale width and height independently, This may change the aspect ratio of the src.
uri is a string representing the resource identifier for the image, which
could be an http address, a local file path, or the name of a static image
-resource (which should be wrapped in the require('./path/to/image.png') function).
When the image has rounded corners, specifying an overlayColor will
+resource (which should be wrapped in the require('./path/to/image.png') function).
When the image has rounded corners, specifying an overlayColor will cause the remaining space in the corners to be filled with a solid color. This is useful in cases which are not supported by the Android implementation of rounded corners: diff --git a/releases/0.20/docs/scrollview.html b/releases/0.20/docs/scrollview.html index 05bdc5726fb..2b87b8fbc9d 100644 --- a/releases/0.20/docs/scrollview.html +++ b/releases/0.20/docs/scrollview.html @@ -33,7 +33,7 @@ functionality for the ScrollView.
When false, the content does not scroll. -The default value is true.
When true, shows a horizontal scroll indicator.
When true, shows a vertical scroll indicator.
(Android-only) Sets the elevation of a view, using Android's underlying +The default value is true.
When true, shows a horizontal scroll indicator.
When true, shows a vertical scroll indicator.
(Android-only) Sets the elevation of a view, using Android's underlying elevation API. This adds a drop shadow to the item and affects z-order for overlapping views. Only supported on Android 5.0+, has no effect on earlier versions.
When true, momentum events will be sent from Android diff --git a/releases/0.20/docs/text.html b/releases/0.20/docs/text.html index 269ac29e6aa..d53050c8b49 100644 --- a/releases/0.20/docs/text.html +++ b/releases/0.20/docs/text.html @@ -25,7 +25,7 @@ each other on account of the literal newlines:
Used to truncate the text with an ellipsis after computing the text layout, including line wrapping, such that the total number of lines -does not exceed this number.
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 +does not exceed this number.
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 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.
(Android-only) Sets the elevation of a view, using Android's underlying +(or one of its superviews).
(Android-only) Sets the elevation of a view, using Android's underlying elevation API. This adds a drop shadow to the item and affects z-order for overlapping views. Only supported on Android 5.0+, has no effect on earlier versions.
Used to locate this view in end-to-end tests. NB: disables the 'layout-only