https://kotlinlang.org logo
#compose
Title
# compose
a

Adib Faramarzi

08/07/2021, 9:41 AM
Is there a more basic version of
BasicTextField
? 😅 I don't want to show the string that was entered as a text.
BasicTextField
provides a
decorationBox
lambda which gives you a composable to render (and that composable is a text field). I want another one that gives out the current
value
. One way to achieve this is to use the value that's being used by the text field.
z

Zach Klippenstein (he/him) [MOD]

08/07/2021, 2:51 PM
You could interact with the ime service yourself I guess
What’s your use case?
g

Gabriele Mariotti

08/07/2021, 5:50 PM
Try to use the
visualTransformation
parameter
☝️ 1
c

Colton Idle

08/09/2021, 12:40 AM
Is there a more basic version of 
BasicTextField
 ?
🤔
I don't want to show the string that was entered as a text.
🤯
2 Views