Skip to content

Commit

Permalink
add accessibility label
Browse files Browse the repository at this point in the history
  • Loading branch information
gwmccull committed Sep 1, 2017
1 parent ede35cd commit 58f4620
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tab/ExNavigationTabBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ export default class ExNavigationTabBar extends React.Component {
if (item.showsTouches) {
return (
<TouchableNativeFeedback
accessibilityLabel={item.accessibilityLabel}
key={index}
onPress={item.onPress}
onLongPress={item.onLongPress}
Expand All @@ -101,6 +102,7 @@ export default class ExNavigationTabBar extends React.Component {
} else {
return (
<TouchableWithoutFeedback
accessibilityLabel={item.accessibilityLabel}
key={index}
onPress={item.onPress}
delayPressIn={0}
Expand Down

0 comments on commit 58f4620

Please sign in to comment.