mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-03 22:47:39 +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,
|
value = textFieldValue,
|
||||||
keyboardOptions =
|
keyboardOptions =
|
||||||
KeyboardOptions(
|
KeyboardOptions(
|
||||||
keyboardType = KeyboardType.Ascii,
|
keyboardType = KeyboardType.Text,
|
||||||
autoCorrect = true,
|
autoCorrect = true,
|
||||||
capitalization = KeyboardCapitalization.Sentences,
|
capitalization = KeyboardCapitalization.Sentences,
|
||||||
),
|
),
|
||||||
|
@ -403,7 +403,7 @@ class CreatePostScreen(
|
|||||||
},
|
},
|
||||||
keyboardOptions =
|
keyboardOptions =
|
||||||
KeyboardOptions(
|
KeyboardOptions(
|
||||||
keyboardType = KeyboardType.Ascii,
|
keyboardType = KeyboardType.Text,
|
||||||
autoCorrect = true,
|
autoCorrect = true,
|
||||||
imeAction = ImeAction.Next,
|
imeAction = ImeAction.Next,
|
||||||
capitalization = KeyboardCapitalization.Sentences,
|
capitalization = KeyboardCapitalization.Sentences,
|
||||||
@ -463,7 +463,7 @@ class CreatePostScreen(
|
|||||||
singleLine = true,
|
singleLine = true,
|
||||||
keyboardOptions =
|
keyboardOptions =
|
||||||
KeyboardOptions(
|
KeyboardOptions(
|
||||||
keyboardType = KeyboardType.Ascii,
|
keyboardType = KeyboardType.Text,
|
||||||
autoCorrect = false,
|
autoCorrect = false,
|
||||||
imeAction = ImeAction.Next,
|
imeAction = ImeAction.Next,
|
||||||
),
|
),
|
||||||
|
@ -165,7 +165,7 @@ class MultiCommunityEditorScreen(
|
|||||||
value = uiState.name,
|
value = uiState.name,
|
||||||
keyboardOptions =
|
keyboardOptions =
|
||||||
KeyboardOptions(
|
KeyboardOptions(
|
||||||
keyboardType = KeyboardType.Ascii,
|
keyboardType = KeyboardType.Text,
|
||||||
autoCorrect = false,
|
autoCorrect = false,
|
||||||
imeAction = ImeAction.Next,
|
imeAction = ImeAction.Next,
|
||||||
),
|
),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user