fix: keyboard type for text inputs (#938)

This commit is contained in:
Diego Beraldin 2024-06-06 11:26:48 +02:00 committed by GitHub
parent 36416918e1
commit 7d8703e3e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -243,7 +243,7 @@ class InboxChatScreen(
value = textFieldValue,
keyboardOptions =
KeyboardOptions(
keyboardType = KeyboardType.Ascii,
keyboardType = KeyboardType.Text,
autoCorrect = true,
capitalization = KeyboardCapitalization.Sentences,
),

View File

@ -403,7 +403,7 @@ class CreatePostScreen(
},
keyboardOptions =
KeyboardOptions(
keyboardType = KeyboardType.Ascii,
keyboardType = KeyboardType.Text,
autoCorrect = true,
imeAction = ImeAction.Next,
capitalization = KeyboardCapitalization.Sentences,
@ -463,7 +463,7 @@ class CreatePostScreen(
singleLine = true,
keyboardOptions =
KeyboardOptions(
keyboardType = KeyboardType.Ascii,
keyboardType = KeyboardType.Text,
autoCorrect = false,
imeAction = ImeAction.Next,
),

View File

@ -165,7 +165,7 @@ class MultiCommunityEditorScreen(
value = uiState.name,
keyboardOptions =
KeyboardOptions(
keyboardType = KeyboardType.Ascii,
keyboardType = KeyboardType.Text,
autoCorrect = false,
imeAction = ImeAction.Next,
),