diff --git a/react/features/settings/components/native/SettingsView.js b/react/features/settings/components/native/SettingsView.js index c5decf726b..2a7a6d50a9 100644 --- a/react/features/settings/components/native/SettingsView.js +++ b/react/features/settings/components/native/SettingsView.js @@ -160,6 +160,7 @@ class SettingsView extends AbstractSettingsView { autoCorrect = { false } onChangeText = { this._onChangeDisplayName } placeholder = 'John Doe' + textContentType = { 'name' } // iOS only value = { displayName } /> { keyboardType = { 'email-address' } onChangeText = { this._onChangeEmail } placeholder = 'email@example.com' + textContentType = { 'emailAddress' } // iOS only value = { email } /> { autoCapitalize = 'none' autoCorrect = { false } editable = { this.props._serverURLChangeEnabled } + keyboardType = { 'url' } onBlur = { this._onBlurServerURL } onChangeText = { this._onChangeServerURL } placeholder = { this.props._serverURL } + textContentType = { 'URL' } // iOS only value = { serverURL } /> { - { `${AppInfo.version} build ${AppInfo.buildNumber}` } + {`${AppInfo.version} build ${AppInfo.buildNumber}`} - { this._renderAdvancedSettings() } + {this._renderAdvancedSettings()} );