nglauber
10/28/2019, 5:09 PMTextField
but it has no background or the bottom line like existing in EditText
. Do you guys know how can I set it?
This is what I’m doing.
TextField(
value = currentPerson.name,
onValueChange = { currentPerson.name = it },
editorStyle = EditorStyle(
textStyle = TextStyle(
fontSize = (16.sp)
)
)
)
Also, I’m trying to add two TextFields
inside a Row
and no luck so far… I’m getting this error:
java.lang.IllegalArgumentException: minWidth 2147483647.ipx should be finite
Luca Nicoletti
10/28/2019, 5:10 PMTextField
in a row https://issuetracker.google.com/issues/143165169nglauber
10/28/2019, 5:12 PMromainguy
10/28/2019, 5:14 PMTextField
is part of core
, it is not a styled widgetTextField
provides what’s needed for text entry, but its role is not to build the decorationsTextField
Anna-Chiara Bellini [G]
10/28/2019, 5:15 PMLuca Nicoletti
10/28/2019, 5:16 PMnglauber
10/28/2019, 5:17 PM