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(

source

The 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).

diff --git a/docs/next/image/index.html b/docs/next/image/index.html index 4830c9aa8d0..4caa4c379a9 100644 --- a/docs/next/image/index.html +++ b/docs/next/image/index.html @@ -300,7 +300,7 @@ AppRegistry.registerComponent(

source

The 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).

diff --git a/docs/next/touchableopacity.html b/docs/next/touchableopacity.html index 0670b4768d7..871cc48b17f 100644 --- a/docs/next/touchableopacity.html +++ b/docs/next/touchableopacity.html @@ -157,6 +157,11 @@ AppRegistry.registerComponent('App', () => A
  • activeOpacity
  • tvParallaxProperties
  • hasTVPreferredFocus
  • +
  • nextFocusDown
  • +
  • nextFocusForward
  • +
  • nextFocusLeft
  • +
  • nextFocusRight
  • +
  • nextFocusUp
  • Methods


    +

    activeOpacity

    +

    Determines what the opacity of the wrapped view should be when touch is active. Defaults to 0.2.

    + + + + + + + +
    TypeRequired
    numberNo
    +

    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 boolNoiOS +
    +

    nextFocusDown

    +

    TV next focus down (see documentation for the View component).

    + + + + + + + +
    TypeRequiredPlatform
    boolNoAndroid
    +
    +

    nextFocusForward

    +

    TV next focus forward (see documentation for the View component).

    + + + + + + + +
    TypeRequiredPlatform
    boolNoAndroid
    +
    +

    nextFocusLeft

    +

    TV next focus left (see documentation for the View component).

    + + + + + + + +
    TypeRequiredPlatform
    boolNoAndroid
    +
    +

    nextFocusRight

    +

    TV next focus right (see documentation for the View component).

    + + + + + + + +
    TypeRequiredPlatform
    boolNoAndroid
    +
    +

    nextFocusUp

    +

    TV next focus up (see documentation for the View component).

    + + + + + + + +
    TypeRequiredPlatform
    boolNoiOS

    Methods

    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