diff --git a/docs/next/accessibility.html b/docs/next/accessibility.html index 4b9c5096b9e..939b5ed5b4a 100644 --- a/docs/next/accessibility.html +++ b/docs/next/accessibility.html @@ -61,7 +61,7 @@
Assign this property to a custom function which will be called when someone performs the "magic tap" gesture, which is a double-tap with two fingers. A magic tap function should perform the most relevant action a user could take on a component. In the Phone app on iPhone, a magic tap answers a phone call, or ends the current one. If the selected element does not have an onMagicTap function, the system will traverse up the view hierarchy until it finds a view that does.
In some cases, we also want to alert the end user of the type of selected component (i.e., that it is a “button”). If we were using native buttons, this would work automatically. Since we are using javascript, we need to provide a bit more context for TalkBack. To do so, you must specify the ‘accessibilityComponentType’ property for any UI component. For instances, we support ‘button’, ‘radiobutton_checked’ and ‘radiobutton_unchecked’ and so on.
+In some cases, we also want to alert the end user of the type of selected component (i.e., that it is a “button”). If we were using native buttons, this would work automatically. Since we are using javascript, we need to provide a bit more context for TalkBack. To do so, you must specify the ‘accessibilityComponentType’ property for any UI component. We support 'none', ‘button’, ‘radiobutton_checked’ and ‘radiobutton_unchecked’.
<TouchableWithoutFeedback accessibilityComponentType=”button”
onPress={this._onPress}>
<View style={styles.button}>
diff --git a/docs/next/cameraroll.html b/docs/next/cameraroll.html
index e45ba732a3a..ab4a34c8eca 100644
--- a/docs/next/cameraroll.html
+++ b/docs/next/cameraroll.html
@@ -93,7 +93,7 @@
_handleButtonPress = () => {
CameraRoll.getPhotos({
first: 20,
- assetType: 'All',
+ assetType: 'Photos',
})
.then(r => {
this.setState({ photos: r.edges });
diff --git a/docs/next/image.html b/docs/next/image.html
index 58ca839c8ed..7a873e1ede4 100644
--- a/docs/next/image.html
+++ b/docs/next/image.html
@@ -155,7 +155,7 @@ AppRegistry.registerComponent(
Animated GIFs
A typical way to use this prop is with images displayed on a solid background and setting the overlayColor to the same color as the background.
-For details of how this works under the hood, see http://frescolib.org/rounded-corners-and-circles.md
+For details of how this works under the hood, see http://frescolib.org/docs/rounded-corners-and-circles.html
blurRadius
@@ -273,7 +273,7 @@ AppRegistry.registerComponent(
resize: A software operation which changes the encoded image in memory before it gets decoded. This should be used instead of scale when the image is much larger than the view.
scale: The image gets drawn downscaled or upscaled. Compared to resize, scale is faster (usually hardware accelerated) and produces higher quality images. This should be used if the image is smaller than the view. It should also be used if the image is slightly bigger than the view.
-More details about resize and scale can be found at http://frescolib.org/resizing-rotating.md.
+More details about resize and scale can be found at http://frescolib.org/docs/resizing.html.
Type Required Platform