fix(ios) disable QuickType bar on iOS15 when not using autocorrect

See:
https://reactnative.dev/blog/2021/09/01/preparing-your-app-for-iOS-15-and-android-12#quicktype-bar
This commit is contained in:
Saúl Ibarra Corretgé
2021-10-01 14:09:23 +02:00
committed by Saúl Ibarra Corretgé
parent 09835a672b
commit f63b161955
4 changed files with 6 additions and 0 deletions

View File

@@ -167,6 +167,7 @@ class LoginDialog extends Component<Props, State> {
onChangeText = { this._onUsernameChange }
placeholder = { 'user@domain.com' }
placeholderTextColor = { PLACEHOLDER_COLOR }
spellCheck = { false }
style = { _dialogStyles.field }
underlineColorAndroid = { FIELD_UNDERLINE }
value = { this.state.username } />