Is there any way I can remove the default padding ...
# compose-android
t
Is there any way I can remove the default padding of TextField without using BasicTextField? Thanks in advance!
x
You could use the
Modifier.layout { }
to change the dimensions of the layout on which that component is being drawn. I feel like you could end up achieving what you want
e
You can also copy the source of TextField into your own project
t
@efemoney Is that recommended?