From 0db87cebba79a52f459c69979dd692da81cbee17 Mon Sep 17 00:00:00 2001 From: Rafe Colton Date: Wed, 14 Oct 2020 15:43:45 -0700 Subject: [PATCH] Disable auto capitalization for login field This is either an email or a phone number. Phone numbers aren't capitalized, and emails are not typically capitalized. Disabling auto-capitalization ("sentence" is the default) should make this field more convenient for most users --- src/page/SignInPage.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/page/SignInPage.js b/src/page/SignInPage.js index ad00f42cbf65..b696d3ac9664 100644 --- a/src/page/SignInPage.js +++ b/src/page/SignInPage.js @@ -93,6 +93,7 @@ class App extends Component { textContentType="username" onChangeText={text => this.setState({login: text})} onSubmitEditing={this.submitForm} + autoCapitalize="none" />