When using `OutlinedTextField` , is there any way ...
# compose
b
When using
OutlinedTextField
, is there any way to always keep the label at the top , instead of having it inside when the text is empty / unfocused? I know the answer here usually is that that's the recommended material behavior, however, in this case I feel that such a small change is not worth creating a new
TextFieldImpl
implementation (but of course, I may be wrong).
s
There is no end for specific requests :/
As far as i know as you also mentioned the material textfields strictly follow the material guidelines
Actually it applies to all/most of the material layer
b
You're right, I see how those specific requests can get out of hand. Totally get the logic behind that. At the end, my real problem here was that I was looking at
TextFieldImpl
by mistake, instead of looking at
BaseTextField
which makes much more sense here and with little work can cover my use case 😅
👍 1