diff --git a/react/features/base/react/components/native/Container.js b/react/features/base/react/components/native/Container.js index 0383d87ff..0b5c2bfd9 100644 --- a/react/features/base/react/components/native/Container.js +++ b/react/features/base/react/components/native/Container.js @@ -30,6 +30,8 @@ export default class Container extends AbstractContainer { */ render() { const { + accessibilityLabel, + accessible, onClick, touchFeedback = onClick, visible = true, @@ -50,7 +52,11 @@ export default class Container extends AbstractContainer { touchFeedback ? TouchableHighlight : TouchableWithoutFeedback, - { onPress: onClick }, + { + accessibilityLabel, + accessible, + onPress: onClick + }, element); } diff --git a/react/features/conference/components/Conference.native.js b/react/features/conference/components/Conference.native.js index 2e1ec6290..2237bce4b 100644 --- a/react/features/conference/components/Conference.native.js +++ b/react/features/conference/components/Conference.native.js @@ -179,6 +179,8 @@ class Conference extends Component { render() { return ( diff --git a/react/features/toolbox/components/ToolbarButton.native.js b/react/features/toolbox/components/ToolbarButton.native.js index c24ca92d4..3c1475e36 100644 --- a/react/features/toolbox/components/ToolbarButton.native.js +++ b/react/features/toolbox/components/ToolbarButton.native.js @@ -38,6 +38,8 @@ class ToolbarButton extends AbstractToolbarButton { _renderButton(children) { const props = {}; + 'accessibilityLabel' in this.props + && (props.accessibilityLabel = this.props.accessibilityLabel); 'disabled' in this.props && (props.disabled = this.props.disabled); 'onClick' in this.props && (props.onPress = this._onClick); 'style' in this.props && (props.style = this.props.style); diff --git a/react/features/toolbox/components/Toolbox.native.js b/react/features/toolbox/components/Toolbox.native.js index a6cbc52e0..f50e4e180 100644 --- a/react/features/toolbox/components/Toolbox.native.js +++ b/react/features/toolbox/components/Toolbox.native.js @@ -243,6 +243,7 @@ class Toolbox extends Component { onClick = { this._onToggleAudio } style = { audioButtonStyles.style } />