diff --git a/docs/next/image.html b/docs/next/image.html index 4830c9aa8d0..4caa4c379a9 100644 --- a/docs/next/image.html +++ b/docs/next/image.html @@ -300,7 +300,7 @@ AppRegistry.registerComponent(
sourceThe image source (either a remote URL or a local file resource).
-This prop can also contain several remote URLs, specified together with their width and height and potentially with scale/other URI arguments. The native side will then choose the best uri to display based on the measured size of the image container. A cache property can be added to control how networked request interacts with the local cache.
This prop can also contain several remote URLs, specified together with their width and height and potentially with scale/other URI arguments. The native side will then choose the best uri to display based on the measured size of the image container. A cache property can be added to control how networked request interacts with the local cache. (For more information see Cache Control for Images).
The currently supported formats are png, jpg, jpeg, bmp, gif, webp (Android only), psd (iOS only). In addition, iOS supports several RAW image formats. Refer to Apple's documentation for the current list of supported camera models (for iOS 12, see https://support.apple.com/en-ca/HT208967).
activeOpacityDetermines what the opacity of the wrapped view should be when touch is active. Defaults to 0.2.
+| Type | Required |
|---|---|
| number | No |
tvParallaxProperties(Apple TV only) Object with properties to control Apple TV parallax effects.
enabled: If true, parallax effects are enabled. Defaults to true. shiftDistanceX: Defaults to 2.0. shiftDistanceY: Defaults to 2.0. tiltAngle: Defaults to 0.05. magnification: Defaults to 1.0. pressMagnification: Defaults to 1.0. pressDuration: Defaults to 0.3. pressDelay: Defaults to 0.0.
@@ -208,6 +224,61 @@ AppRegistry.registerComponent('App', () => AnextFocusDownTV next focus down (see documentation for the View component).
+| Type | Required | Platform |
|---|---|---|
| bool | No | Android |
nextFocusForwardTV next focus forward (see documentation for the View component).
+| Type | Required | Platform |
|---|---|---|
| bool | No | Android |
nextFocusLeftTV next focus left (see documentation for the View component).
+| Type | Required | Platform |
|---|---|---|
| bool | No | Android |
nextFocusRightTV next focus right (see documentation for the View component).
+| Type | Required | Platform |
|---|---|---|
| bool | No | Android |
nextFocusUpTV next focus up (see documentation for the View component).
+| Type | Required | Platform |
|---|---|---|
| bool | No | iOS |
setOpacityTo()setOpacityTo((value: number), (duration: number));
diff --git a/docs/next/touchableopacity/index.html b/docs/next/touchableopacity/index.html
index 0670b4768d7..871cc48b17f 100644
--- a/docs/next/touchableopacity/index.html
+++ b/docs/next/touchableopacity/index.html
@@ -157,6 +157,11 @@ AppRegistry.registerComponent('App', () => A
activeOpacity
tvParallaxProperties
hasTVPreferredFocus
+nextFocusDown
+nextFocusForward
+nextFocusLeft
+nextFocusRight
+nextFocusUp
Methods
@@ -186,6 +191,17 @@ AppRegistry.registerComponent('App', () => A
+activeOpacity
+Determines what the opacity of the wrapped view should be when touch is active. Defaults to 0.2.
+
+
+Type Required
+
+
+number No
+
+
+
tvParallaxProperties
(Apple TV only) Object with properties to control Apple TV parallax effects.
enabled: If true, parallax effects are enabled. Defaults to true. shiftDistanceX: Defaults to 2.0. shiftDistanceY: Defaults to 2.0. tiltAngle: Defaults to 0.05. magnification: Defaults to 1.0. pressMagnification: Defaults to 1.0. pressDuration: Defaults to 0.3. pressDelay: Defaults to 0.0.
@@ -208,6 +224,61 @@ AppRegistry.registerComponent('App', () => A
bool No iOS
+
+nextFocusDown
+TV next focus down (see documentation for the View component).
+
+
+Type Required Platform
+
+
+bool No Android
+
+
+
+nextFocusForward
+TV next focus forward (see documentation for the View component).
+
+
+Type Required Platform
+
+
+bool No Android
+
+
+
+nextFocusLeft
+TV next focus left (see documentation for the View component).
+
+
+Type Required Platform
+
+
+bool No Android
+
+
+
+nextFocusRight
+TV next focus right (see documentation for the View component).
+
+
+Type Required Platform
+
+
+bool No Android
+
+
+
+nextFocusUp
+TV next focus up (see documentation for the View component).
+
+
+Type Required Platform
+
+
+bool No iOS
+
+
Methods
setOpacityTo()
setOpacityTo((value: number), (duration: number));
diff --git a/docs/next/touchablewithoutfeedback.html b/docs/next/touchablewithoutfeedback.html
index 9feff04d34e..e75d42a6d6f 100644
--- a/docs/next/touchablewithoutfeedback.html
+++ b/docs/next/touchablewithoutfeedback.html
@@ -87,12 +87,12 @@
Props
-accessibilityComponentType
+accessibilityIgnoresInvertColors
accessibilityHint
accessibilityLabel
accessibilityRole
accessibilityStates
-accessibilityTraits
+accessibilityState
accessible
delayLongPress
delayPressIn
@@ -107,7 +107,9 @@
onPressIn
onPressOut
pressRetentionOffset
+nativeID
testID
+touchSoundDisabled
Type Definitions
@@ -116,14 +118,13 @@
Reference
Props
-accessibilityComponentType
-> Note: accessibilityComponentTypewill soon be deprecated. When possible, use accessibilityRole and accessibilityStates instead.
+accessibilityIgnoresInvertColors
Type Required
-AccessibilityComponentTypes No
+Boolean No
@@ -169,14 +170,13 @@
-accessibilityTraits
-> Note: accessibilityTraitswill soon be deprecated. When possible, use accessibilityRole and accessibilityStates instead.
+accessibilityState
Type Required
-AccessibilityTraits, ,array of AccessibilityTraits No
+Object No
@@ -331,6 +331,17 @@
object: {top: number, left: number, bottom: number, right: number} No
+
+nativeID
+
+
+Type Required
+
+
+string No
+
+
+
testID
Used to locate this view in end-to-end tests.
@@ -342,6 +353,17 @@
+touchSoundDisabled
+If true, doesn't play a system sound on touch.
+
+
+Type Required Platform
+
+
+Boolean No Android
+
+
+
Type Definitions
Event
diff --git a/docs/next/touchablewithoutfeedback/index.html b/docs/next/touchablewithoutfeedback/index.html
index 9feff04d34e..e75d42a6d6f 100644
--- a/docs/next/touchablewithoutfeedback/index.html
+++ b/docs/next/touchablewithoutfeedback/index.html
@@ -87,12 +87,12 @@
Props
-accessibilityComponentType
+accessibilityIgnoresInvertColors
accessibilityHint
accessibilityLabel
accessibilityRole
accessibilityStates
-accessibilityTraits
+accessibilityState
accessible
delayLongPress
delayPressIn
@@ -107,7 +107,9 @@
onPressIn
onPressOut
pressRetentionOffset
+nativeID
testID
+touchSoundDisabled
Type Definitions
@@ -116,14 +118,13 @@
Reference
Props
-accessibilityComponentType
-> Note: accessibilityComponentTypewill soon be deprecated. When possible, use accessibilityRole and accessibilityStates instead.
+accessibilityIgnoresInvertColors
Type Required
-AccessibilityComponentTypes No
+Boolean No
@@ -169,14 +170,13 @@
-accessibilityTraits
-> Note: accessibilityTraitswill soon be deprecated. When possible, use accessibilityRole and accessibilityStates instead.
+accessibilityState
Type Required
-AccessibilityTraits, ,array of AccessibilityTraits No
+Object No
@@ -331,6 +331,17 @@
object: {top: number, left: number, bottom: number, right: number} No
+
+nativeID
+
+
+Type Required
+
+
+string No
+
+
+
testID
Used to locate this view in end-to-end tests.
@@ -342,6 +353,17 @@
+touchSoundDisabled
+If true, doesn't play a system sound on touch.
+
+
+Type Required Platform
+
+
+Boolean No Android
+
+
+
Type Definitions
Event