diff --git a/docs/0.10/accessibility.html b/docs/0.10/accessibility.html index e778b2f7158..30acfed318c 100644 --- a/docs/0.10/accessibility.html +++ b/docs/0.10/accessibility.html @@ -96,7 +96,7 @@

In the above example, the accessibilityLabel on the TouchableOpacity element would default to "Press me!". The label is constructed by concatenating all Text node children separated by spaces.

accessibilityHint (iOS, Android)

-

An accessibility hint helps users understand what will happen when they perform an action on the accessibility element when that result is not obvious from the accessibility label.

+

An accessibility hint helps users understand what will happen when they perform an action on the accessibility element when that result is not apparent from the accessibility label.

To use, set the accessibilityHint property to a custom string on your View, Text or Touchable:

<TouchableOpacity
   accessible={true}
@@ -199,7 +199,7 @@
   </View>
 </View>
 
-

In the above example, the yellow layout and its descendants are completely invisible to TalkBack and all other accessibility services. So we can easily use overlapping views with the same parent without confusing TalkBack.

+

In the above example, the yellow layout and its descendants are completely invisible to TalkBack and all other accessibility services. So we can use overlapping views with the same parent without confusing TalkBack.

Accessibility Actions

Accessibility actions allow an assistive technology to programmatically invoke the actions of a component. In order to support accessibility actions, a component must do two things: