Is it possible to remove the default “background b...
# compose
j
Is it possible to remove the default “background box” from a
TextField
?
z
You can use
BasicTextField
to get rid of all the material embellishments
j
Hehe I wish I could keep some of the goodies of
TextField
and just get rid of the background
z
Alternatively, you can provide your own set of colors through the
colors
parameter
🙌 1
j
Cool! This improves things:
colors = TextFieldDefaults.outlinedTextFieldColors()
Oh gosh, turned out I completely missed the existence of
OutlinedTextField
.