Browse Source

Adds some accessibilityLabels that can be used for testing.

master
damencho 8 years ago
parent
commit
2c5a5816c4
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      react/features/welcome/components/WelcomePage.native.js

+ 2
- 0
react/features/welcome/components/WelcomePage.native.js View File

98
                 <View style = { styles.roomContainer }>
98
                 <View style = { styles.roomContainer }>
99
                     <Text style = { styles.title }>Enter room name</Text>
99
                     <Text style = { styles.title }>Enter room name</Text>
100
                     <TextInput
100
                     <TextInput
101
+                        accessibilityLabel = { 'Input room name.' }
101
                         autoCapitalize = 'none'
102
                         autoCapitalize = 'none'
102
                         autoComplete = { false }
103
                         autoComplete = { false }
103
                         autoCorrect = { false }
104
                         autoCorrect = { false }
108
                         underlineColorAndroid = 'transparent'
109
                         underlineColorAndroid = 'transparent'
109
                         value = { this.state.room } />
110
                         value = { this.state.room } />
110
                     <TouchableHighlight
111
                     <TouchableHighlight
112
+                        accessibilityLabel = { 'Tap to Join.' }
111
                         disabled = { this._isJoinDisabled() }
113
                         disabled = { this._isJoinDisabled() }
112
                         onPress = { this._onJoin }
114
                         onPress = { this._onJoin }
113
                         style = { styles.button }
115
                         style = { styles.button }

Loading…
Cancel
Save