diff --git a/docs/next/accessibility.html b/docs/next/accessibility.html index 08bd01a88a8..8425010dfc6 100644 --- a/docs/next/accessibility.html +++ b/docs/next/accessibility.html @@ -56,6 +56,9 @@

accessibilityViewIsModal (iOS)

A Boolean value indicating whether VoiceOver should ignore the elements within views that are siblings of the receiver.

For example, in a window that contains sibling views A and B, setting accessibilityViewIsModal to true on view B causes VoiceOver to ignore the elements in the view A. On the other hand, if view B contains a child view C and you set accessibilityViewIsModal to true on view C, VoiceOver does not ignore the elements in view A.

+

accessibilityElementsHidden (iOS)

+

A Boolean value indicating whether the accessibility elements contained within this accessibility element are hidden.

+

For example, in a window that contains sibling views A and B, setting accessibilityElementsHidden to true on view B causes VoiceOver to ignore the elements in the view B. This is similar to the Android property importantForAccessibility="no-hide-descendants".

onAccessibilityTap (iOS)

Use this property to assign a custom function to be called when someone activates an accessible element by double tapping on it while it's selected.

onMagicTap (iOS)

diff --git a/docs/next/view.html b/docs/next/view.html index 10929aea428..b81acc61b3a 100644 --- a/docs/next/view.html +++ b/docs/next/view.html @@ -74,6 +74,7 @@
  • renderToHardwareTextureAndroid
  • accessibilityTraits
  • accessibilityViewIsModal
  • +
  • accessibilityElementsHidden
  • shouldRasterizeIOS

  • @@ -480,7 +481,19 @@

    accessibilityViewIsModal

    A value indicating whether VoiceOver should ignore the elements within views that are siblings of the receiver. Default is false.

    -

    See the Accessibility guide for more information.

    +

    See the Accessibility guide for more information.

    + + + + + + + +
    TypeRequiredPlatform
    boolNoiOS
    +
    +

    accessibilityElementsHidden

    +

    A value indicating whether the accessibility elements contained within this accessibility element are hidden. Default is false.

    +

    See the Accessibility guide for more information.

    TypeRequiredPlatform