Roman Polach
09/14/2021, 3:29 PMBasicTextField(
singleLine = true,
value = text,
textStyle = LocalTextStyle.current.copy(textDecoration = TextDecoration.None),
readOnly = readOnly,
onValueChange = {
onValueChanged(it)
}
)
Chris Sinco [G]
09/14/2021, 4:13 PMRoman Polach
09/14/2021, 6:47 PMChris Sinco [G]
09/14/2021, 7:36 PMChris Sinco [G]
09/14/2021, 7:36 PMRoman Polach
09/14/2021, 7:39 PMChris Sinco [G]
09/16/2021, 12:43 AMchatterInDaSkull
06/21/2022, 4:47 PMchatterInDaSkull
06/21/2022, 4:49 PMkeyboardOptions = KeyboardOptions(
capitalization = KeyboardCapitalization.None,
autoCorrect = false,
keyboardType = KeyboardType.Password,
imeAction = ImeAction.Next
),
which makes the copied clipboard value being masked (as expected)Chris Sinco [G]
06/21/2022, 5:54 PMchatterInDaSkull
06/21/2022, 6:12 PMif (!imeOptions.autoCorrect) {
this.inputType = this.inputType or InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS
}
Chris Sinco [G]
06/21/2022, 6:14 PMSiyamed
06/28/2022, 1:40 PMchatterInDaSkull
06/28/2022, 7:40 PMI suspect there is a balance between per app behavior and OS wide behavior.IMO, • don’t show underscore for suggestions similar to password entry • don’t have the clipboard show as bullet points (this might be a gboard thing out of your control)