mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-03 14:07:45 +01:00
fix: keyboard type for text inputs (#938)
This commit is contained in:
parent
36416918e1
commit
7d8703e3e3
@ -243,7 +243,7 @@ class InboxChatScreen(
|
||||
value = textFieldValue,
|
||||
keyboardOptions =
|
||||
KeyboardOptions(
|
||||
keyboardType = KeyboardType.Ascii,
|
||||
keyboardType = KeyboardType.Text,
|
||||
autoCorrect = true,
|
||||
capitalization = KeyboardCapitalization.Sentences,
|
||||
),
|
||||
|
@ -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,
|
||||
),
|
||||
|
@ -165,7 +165,7 @@ class MultiCommunityEditorScreen(
|
||||
value = uiState.name,
|
||||
keyboardOptions =
|
||||
KeyboardOptions(
|
||||
keyboardType = KeyboardType.Ascii,
|
||||
keyboardType = KeyboardType.Text,
|
||||
autoCorrect = false,
|
||||
imeAction = ImeAction.Next,
|
||||
),
|
||||
|
Loading…
x
Reference in New Issue
Block a user