is there supposed to be a bottom padding for TextF...
# compose-desktop
j
is there supposed to be a bottom padding for TextFields, when not setting
supportingText
to null even though its just an empty composable?:
Copy code
OutlinedTextField(
    value = "",
    onValueChange = {},
    supportingText = {}
)
I use this to display error messages, but if no error is there this looks weird with so much space
a
Would be weird if the layout jumped when there was an error.
j
maybe its just me