Is there a way to change internal paddings in `Tex...
# compose
v
Is there a way to change internal paddings in
TextField
?
The code is simple as
Copy code
@Preview
@Composable
fun Test() {
    TextField(value = "So much space around me...", onValueChange = { })
}
a
modifier = Modifier.padding(0.dp)
as argument to TextField?
v
Tried that, it didn’t help unfortunately
a
I guess you could use BaseTextField then
v
That did work! Thank you!
👍 1