|
@@ -170,6 +170,7 @@ class SettingsView extends AbstractSettingsView<Props, State> {
|
170
|
170
|
mode = 'outlined'
|
171
|
171
|
onChangeText = { this._onChangeDisplayName }
|
172
|
172
|
placeholder = 'John Doe'
|
|
173
|
+ spellCheck = { false }
|
173
|
174
|
style = { styles.textInputContainer }
|
174
|
175
|
textContentType = { 'name' } // iOS only
|
175
|
176
|
theme = {{
|
|
@@ -188,6 +189,7 @@ class SettingsView extends AbstractSettingsView<Props, State> {
|
188
|
189
|
mode = 'outlined'
|
189
|
190
|
onChangeText = { this._onChangeEmail }
|
190
|
191
|
placeholder = 'email@example.com'
|
|
192
|
+ spellCheck = { false }
|
191
|
193
|
style = { styles.textInputContainer }
|
192
|
194
|
textContentType = { 'emailAddress' } // iOS only
|
193
|
195
|
theme = {{
|
|
@@ -212,6 +214,7 @@ class SettingsView extends AbstractSettingsView<Props, State> {
|
212
|
214
|
onBlur = { this._onBlurServerURL }
|
213
|
215
|
onChangeText = { this._onChangeServerURL }
|
214
|
216
|
placeholder = { this.props._serverURL }
|
|
217
|
+ spellCheck = { false }
|
215
|
218
|
style = { styles.textInputContainer }
|
216
|
219
|
textContentType = { 'URL' } // iOS only
|
217
|
220
|
theme = {{
|