Remove accessible props from nav buttons children

This commit is contained in:
Chris Burger 2018-09-05 16:48:42 -04:00
parent 6a0c6de329
commit 1931b5b968
2 changed files with 3 additions and 0 deletions

View File

@ -93,6 +93,7 @@ class HeaderBackButton extends React.PureComponent {
return (
<Text
accessible={false}
onLayout={this._onTextLayout}
style={[styles.title, !!tintColor && { color: tintColor }, titleStyle]}
numberOfLines={1}
@ -107,6 +108,7 @@ class HeaderBackButton extends React.PureComponent {
let button = (
<TouchableItem
accessible={false}
accessibilityComponentType="button"
accessibilityLabel={title}
accessibilityTraits="button"

View File

@ -9,6 +9,7 @@ const HeaderTitle = ({ style, ...rest }) => (
{...rest}
style={[styles.title, style]}
accessibilityTraits="header"
accessible={false}
/>
);